{"info":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","description":"<html><head></head><body><img src=\"https://content.pstmn.io/eeaa367f-a366-41d3-8eb3-6b237e3dd982/QXBpIGJhbm5lckAyeC5wbmc=\">\n\n<h2 id=\"introduction\"><strong>Introduction</strong></h2>\n<p>Welcome to the Abzorb API documentation, designed for third-party integration with Abzorb’s CRM/ERP platform. Our API provides extensive capabilities to manage customers, oversee connections, facilitate mobile orders, handle ticket management, monitor data usage for active connections, and much more. It serves as a dynamic interface enabling developers to seamlessly integrate their systems with Abzorb's services.</p>\n<p>The Abzorb API is architected around REST principles. Our API employs predictable resource-oriented URLs, returns JSON-encoded responses, and adheres to standard HTTP response codes and authentication methods.</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://abzorbapi.click2sign.co.uk:8075/api/\">https://abzorbapi.click2sign.co.uk:8075/api/</a></td>\n</tr>\n<tr>\n<td>Staging API</td>\n<td><a href=\"https://abzorbapi.click2sign.co.uk:8074/api/\">https://abzorbapi.click2sign.co.uk:8074/api/</a></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"authentication\"><strong>Authentication</strong></h2>\n<p>The Abzorb API utilises username/password authentication, where credentials are encoded as a Base64 string. Each API call requires an HTTP header with the key <code>Authorization</code>. The corresponding value should be <code>Basic</code> followed by your encoded username and password.</p>\n<p>To start using the Abzorb API, please pay close attention to the following:</p>\n<ol>\n<li><p>You must use valid credentials to send requests to the API endpoints.</p>\n</li>\n<li><p>The API only responds to HTTPS-secured communications. Any requests sent via HTTP will return an HTTP 301 redirect to the corresponding HTTPS resources.</p>\n</li>\n<li><p>The API returns request responses in JSON format. When an API request returns an error, it is sent in the JSON response as an <code>error</code> key.</p>\n</li>\n</ol>\n<h2 id=\"errors\">Errors</h2>\n<p>The Abzorb API utilises standard HTTP response codes to convey the outcome of API requests. Typically:</p>\n<ul>\n<li><p>Codes in the 2xx range signify successful operations.</p>\n</li>\n<li><p>Codes in the 4xx range indicate client errors, such as missing required parameters or invalid requests.</p>\n</li>\n<li><p>Codes in the 5xx range signify server errors, reflecting issues on Abzorb's end, which are infrequent.</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-response\">Authentication error response</h3>\n<p>If invalid API credentials are provided, you will receive an HTTP 401 Unauthorized response code.</p>\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/2016</td>\n<td>Jak Barnes</td>\n<td>Intitial Release  <br>  <br>- Request a sim swap  <br>- Toggle Bars  <br>- Request tariff changes</td>\n</tr>\n<tr>\n<td>2.0</td>\n<td>21/06/2016</td>\n<td>Jak Barnes</td>\n<td>Second version released, adding the ability to emulate the portal’s draft order process.  <br>  <br>- Create/Return customers  <br>- Create/Submit/Return draft orders  <br>- Add/Remove mobile to draft order  <br>- Add/Remove bundle from draft order mobile</td>\n</tr>\n<tr>\n<td>2.1</td>\n<td>28/07/2016</td>\n<td>Jak Barnes</td>\n<td>Minor update  <br>  <br>- Added MonitorOrder method to view order status from the submitted contracts table  <br>- Added the ability to Add/Remove bars from draft order mobile  <br>  <br>Added TariffLevelOptionID column to barring information</td>\n</tr>\n<tr>\n<td>2.2</td>\n<td>01/08/2016</td>\n<td>Jak Barnes</td>\n<td>Minor update  <br>  <br>- Added validation into the Submit Order call to prevent erroneous data from being inputted.  <br>  <br>Added 1 new function relating to building orders, ReturnOrderToDraft, This will allow the API user to return incorrectly built orders to the draft stage so that they can then be amended and re-submitted.</td>\n</tr>\n<tr>\n<td>2.3</td>\n<td>08/08/2016</td>\n<td>Jak Barnes</td>\n<td>- Added a GetTasksForCustomer method so the user can view a list of all tasks raised on that customer  <br>  <br>Added a GetCommentsForTask method so that the user can see comments associated with each task</td>\n</tr>\n<tr>\n<td>2.4</td>\n<td>22/08/2016</td>\n<td>Ben Sugden</td>\n<td>Minor update  <br>  <br>Added a GetTicketsForOrder method so the user can check for associated tickets on an order id</td>\n</tr>\n<tr>\n<td>2.5</td>\n<td>07/10/2016</td>\n<td>Ben Sugden</td>\n<td>Document revision  <br>  <br>Pulled into standard branding for distribution to prospective users.</td>\n</tr>\n<tr>\n<td>2.6</td>\n<td>19/10/2016</td>\n<td>Ben Sugden</td>\n<td>Added document referencing.</td>\n</tr>\n<tr>\n<td>2.7</td>\n<td>19/06/2017</td>\n<td>Awais Hussain</td>\n<td>- Added a ListTariffsForNetwork method so the user can view a list of Tariff ID’s, Tariff Name and Retail Cost on a particular Network  <br>  <br>Added a ListBundlesForTariff method so the user can view a list of Bundle ID’s, Bundle Name and Retail Cost for a specific tariff</td>\n</tr>\n<tr>\n<td>2.8</td>\n<td>19/02/2018</td>\n<td>Awais Hussain</td>\n<td>Minor Update  <br>  <br>- Added a GetCommentsForTaskBulk method so that the user can see a bulk view of comments associated to tasks  <br>  <br>- Added a ViewTaskStatusBulk method so that the user can see a bulk view of task status  <br>  <br>- Added a GetTicketsForOrderBulk method so that the user can see a bulk view of DiaryEntryID’s and associated OrderID’s  <br>  <br>Added a MonitorOrderBulk method so that the user can see a bulk view of order statuses .</td>\n</tr>\n<tr>\n<td>2.9</td>\n<td>21/03/2018</td>\n<td>Awais Hussain</td>\n<td>- Added validation into the Tariff change call to prevent users from performing tariff changes on certain tariffs under certain scenarios.  <br>- Added a GetTariffsForContract method so that the user can access the applicable tariffs for a given ContractID.</td>\n</tr>\n<tr>\n<td>3.0</td>\n<td>05/04/2018</td>\n<td>Awais Hussain</td>\n<td>- Added a ListAvaialbleNumbers method which will return a list of available new mobile numbers for a given which can be used when adding placing new mobile order. The new method will only return new numbers for Vodafone and O2.  <br>  <br>- Also, changed logic within AddMobileToOrder method so that if the connection type is New and an empty string is passed through then a new mobile number is allocated.</td>\n</tr>\n<tr>\n<td>3.1</td>\n<td>30/05/2019</td>\n<td>Awais Hussain</td>\n<td>- Added a BillCapOffered flag to the AddMobileToOrder call in order to determine whether Bill capping has been offered.  <br>- Added an EnableBillCap flag to the AddMobileToOrder call to toggle Bill capping for one or more connections.  <br>- Added a BillCapValue field to the AddMobileToOrder call against which a Bill Cap threshold can be set.  <br>- Added validation to ensure if user toggles Bill capping that the tariff selected is eligible for Bill capping  <br>- Added a BillCapEligibleTariffs method which will return a list of Bill cap eligible tariffs for a given Network provider (Vodafone, O2 or EE).</td>\n</tr>\n<tr>\n<td>3.2</td>\n<td>13/08/2019</td>\n<td>Awais Hussain</td>\n<td>- Added a new Connection type for Disconnection in order to allow STAC connections to be added at the point of adding a new Mobile order.  <br>- Added new methods to allow the creation of PAC, STAC and INFO requests via the API.  <br>- Added a GetSwitchingRequests method to allow API users to query previous requests  <br>- Added a ListBundlesForNetwork method to allow a list of active bundles to be returned for a specific Network.  <br>- Added an API call for all information shown within Appendix pages of API documentation. This is to ensure that API users have the most recent information.</td>\n</tr>\n<tr>\n<td>3.3</td>\n<td>15/12/2019</td>\n<td>Awais Hussain</td>\n<td>- API users can now provision abZ connections via the API  <br>- API users can now provision Bar and SIM requests for abZ connections  <br>- Added a GetCustomerDetails method to allow individual customer details to be queried and returned.</td>\n</tr>\n<tr>\n<td>3.4</td>\n<td>04/05/2021</td>\n<td>Awais Hussain</td>\n<td>Added new methods to allow the creation of PAC, STAC requests via the API.</td>\n</tr>\n<tr>\n<td>3.5</td>\n<td>17/06/2021</td>\n<td>Awais Hussain</td>\n<td>Added CoRegNumber field to GetCustomerDetails and CreateCustomer API calls.</td>\n</tr>\n<tr>\n<td>3.6</td>\n<td>25/11/2021</td>\n<td>Awais Hussain</td>\n<td>Changed references to Abzorb API endpoint. The live endpoint is now only available via Port 8075.</td>\n</tr>\n<tr>\n<td>5.0</td>\n<td>01/09/2022</td>\n<td>Awais Hussain</td>\n<td>Improved document formatting and changed versioning.</td>\n</tr>\n<tr>\n<td>6.0</td>\n<td>29/04/2024</td>\n<td>Awais Hussain</td>\n<td>Breaking Changes:  <br>  <br>1. <code>Add or Remove Bar</code> - the endpoint response has been changed so that the response body now references a new return object.  <br>  <br>2.<code>Add Bundle</code> - the endpoint response has been changed so that the response body now references a new return object.  <br>  <br>3. <code>Remove Bundle</code> - the endpoint response has been changed so that the response body now references a new return object.  <br>  <br>4.<code>GetConnectionByCLI</code> - we have added attributes to this API call regarding CapZ.  <br>  <br>5. <code>SIMChange</code> - the endpoint response has been changed so that the response body now references a new return object.  <br>  <br>6. <code>AddMobileToOrder</code> - added functionality to allow Vodafone eSIMs to be requested at the point of order.  <br>  <br>7. <code>ChangeSIM</code> - <code>Mobile_No</code> parameter name changed to <code>cli</code>  <br>  <br>8. For all API calls that take parameters, the naming conventions have changed to <code>camelCase</code> from <code>PascalCase</code>.  <br>  <br>9. Changed <code>AddBundles</code> method name to <code>AddBundle</code> and changed parameter name from <code>TariffIDs</code>to <code>tariffOptionId</code>  <br>  <br>9. Changed <code>RemoveBundles</code> method name to <code>RemoveBundle</code>and changed parameter name from <code>TariffIDs</code>to <code>tariffOptionId</code>  <br>  <br>10. Changed <code>GetConnectionByCustomerID</code> method to <code>GetConnectionByCustomerId</code>  <br>  <br>11. Changed <code>AddBarToMobile</code> method name to <code>AddBarToMobileOrder</code>  <br>  <br>12. Changed <code>RemoveBarFromMobile</code> to <code>RemoveBarFromMobileOrder</code>  <br>  <br>13. Renamed <code>ReturnOrder</code> method to <code>GetOrderDetails</code>  <br>  <br>14. Renamed <code>ReturnOrders</code>to <code>GetOrdersForCustomer</code>  <br>  <br>API Changes:  <br>  <br>- Added a new API endpoint (<code>CreateEsimRequest</code>) to allow a Vodafone eSIM request to take place.  <br>- Improvements to order validation.  <br>-<code>GetConnectionByCLI</code> now returns core CapZ details.  <br>- A new 'alerting' controller has been created with multiple new endpoints.  <br>- Functionality to allow Vodafone eSIMs at the point of order.</td>\n</tr>\n<tr>\n<td>6.1</td>\n<td>01/10/2024</td>\n<td>Awais Hussain</td>\n<td>Breaking Changes:  <br>  <br>1. Amended values returned within the <code>GetConnectionByCLI</code>API call.  <br>  <br>Core Changes:  <br>  <br>1. Amended the Alerting related attributes returned within the <code>GetConnectionByCLI</code>API call to include a greater number of attributes.</td>\n</tr>\n<tr>\n<td>6.2</td>\n<td>16/10/2024</td>\n<td>Awais Hussain</td>\n<td>Core Changes:  <br>  <br>1. Added a new endpoint called <code>GetUsageInformationForCli</code>to allow Billing usage information to be retreived for a given connection.</td>\n</tr>\n<tr>\n<td>6.3</td>\n<td>28/10/2024</td>\n<td>Awais Hussain</td>\n<td>Core Changes:  <br>  <br>1. Added a new endpointed called <code>GetCliAlertingBarStatus</code> to allow the bar status of a CLI to be viewed.</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 Business Development Manager (BDM) 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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","publishedId":"2sB3QRondn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-10-23T13:12:58.000Z"},"item":[{"name":"Alerting Controller","item":[{"name":"Appendix","item":[],"id":"a7d4e21a-98d5-44f0-8aa8-46723b6a3127","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":"a7d4e21a-98d5-44f0-8aa8-46723b6a3127","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get Reseller Defaults","id":"13b80533-6802-4d85-8d82-42dd6aa1a8f8","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/alerting"],"query":[],"variable":[]}},"response":[{"id":"6f66d4e9-779a-4bba-93dc-a53a90e1ef6c","name":"Get Reseller Defaults","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"13b80533-6802-4d85-8d82-42dd6aa1a8f8"},{"name":"Get Customer Alert Settings","id":"320e04c3-2067-4c79-8b05-cfa90c1b12ae","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Alerting"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"ecfff5a2-48f0-4500-baa9-4546a6fe7421","name":"Get Customer Alert Settings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Alerting/GetCustomerAlertSettings?customerId=<customer_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"320e04c3-2067-4c79-8b05-cfa90c1b12ae"},{"name":"Get CLI Alerting Bar Status","id":"a93b1e7a-9168-4314-bb8b-e1324706572d","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Alerting"],"query":[{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"18cc2f8c-9995-4b53-88e1-0dc0d1bceb0c","name":"Get CLI Alerting Bar Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Alerting/GetCliAlertingBarStatus?contractId=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"a93b1e7a-9168-4314-bb8b-e1324706572d"},{"name":"Get Customer CLI Alert Settings","id":"09d97efe-98b4-4e5f-97e3-2ed7ab586eca","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Alerting"],"query":[{"key":"customerId","value":"<customer_id>"},{"key":"level","value":"<alert_level>"}],"variable":[]}},"response":[{"id":"3a57760a-9774-4c8b-836a-b23f23b52a29","name":"Get Customer CLI Alert Settings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Alerting/GetCustomerCliAlerts?companyId=<customer_id>&level=<alert_level>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"09d97efe-98b4-4e5f-97e3-2ed7ab586eca"},{"name":"Update CLI Alert Settings","id":"8eb8e7d6-ddb3-46c5-8ad7-5b88a080c4ec","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://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["UpdateCLIAlertSettings"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Alerting"],"query":[],"variable":[]}},"response":[{"id":"7654185e-be36-46c1-8ff5-af39e4837e9c","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://abzorbapi.click2sign.co.uk:8074/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":"8eb8e7d6-ddb3-46c5-8ad7-5b88a080c4ec"},{"name":"Update Company Defaults","id":"e5d9b6dc-1dc0-486c-9822-4712907b9dc4","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Alerting"],"query":[],"variable":[]}},"response":[{"id":"982e12ba-2a6d-410e-9c70-3528d5c58dbb","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://abzorbapi.click2sign.co.uk:8074/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":"e5d9b6dc-1dc0-486c-9822-4712907b9dc4"}],"id":"90fff8dc-562e-46e3-afdf-37c3e40e09c3","description":"<p>This subfolder contains the primary API calls for the <code>/api/alerting</code>endpoint.</p>\n","_postman_id":"90fff8dc-562e-46e3-afdf-37c3e40e09c3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"3fa7677f-016b-401c-b8f6-169474623a42","description":"<p>The <code>/alerting</code> endpoint allows you to view and update core alerting settings for a connection</p>\n","_postman_id":"3fa7677f-016b-401c-b8f6-169474623a42","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Bars Management","item":[{"name":"Appendix","item":[{"name":"Get Available Bars for Network","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","packages":{},"id":"04b7a7f1-8de7-49fd-b098-915abb237420"}}],"id":"1ff1b551-252d-488e-b792-e6f525ce757d","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://abzorbapi.click2sign.co.uk:8074/api/Bars/GetAvailableBars?networkCode=<network_code>","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 makes an HTTP GET request to retrieve active bars for a specific network or for all networks.</p>\n<p>If the networkCode is kept <code>null</code>, available bars will return for all networks.</p>\n<p>Applicable <code>networkCode</code> values are listed below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Network</strong></th>\n<th><strong>Network ID</strong></th>\n<th><strong>Network Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>abZ</td>\n<td>40</td>\n<td>abz</td>\n</tr>\n<tr>\n<td>O2</td>\n<td>31</td>\n<td>o2</td>\n</tr>\n<tr>\n<td>Vodafone</td>\n<td>2</td>\n<td>vf</td>\n</tr>\n</tbody>\n</table>\n</div><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>networkCode</td>\n<td>String</td>\n<td><strong>Yes</strong></td>\n<td>Code representing the specific network</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      \"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://abzorbapi.click2sign.co.uk:8074/api/Bars"],"query":[{"key":"networkCode","value":"<network_code>"}],"variable":[]}},"response":[{"id":"0c70c614-3e72-42b9-8c81-7918ec7f15a6","name":"Get Available Bars","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api//Bars/GetAvailableBars?networkCode=abz","host":["https://abzorbapi.click2sign.co.uk:8074/api/"],"path":["Bars","GetAvailableBars"],"query":[{"key":"networkCode","value":"abz"}]}},"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\": 62394,\n        \"Description\": \"SMS Bar (Incl. Premium SMS)\",\n        \"NetworkSuffix\": \"OFFER_UK_PAYM_MOBILE_ONLY_ABZORB_SMS_ACCES\",\n        \"Network\": \"abZ\",\n        \"BarCategory\": \"Bars\",\n        \"DefaultOn\": false\n    },\n    {\n        \"TariffLevelOptionID\": 62395,\n        \"Description\": \"SMS to premium numbers Bar\",\n        \"NetworkSuffix\": \"TSL_BAR_SCP_ALL_PREMIUM_SMS\",\n        \"Network\": \"abZ\",\n        \"BarCategory\": \"Bars\",\n        \"DefaultOn\": false\n    },\n    {\n        \"TariffLevelOptionID\": 62397,\n        \"Description\": \"Voice calls to premium numbers Bar\",\n        \"NetworkSuffix\": \"TSL_BAR_SCP_ALL_PREMIUM_CALLS\",\n        \"Network\": \"abZ\",\n        \"BarCategory\": \"Bars\",\n        \"DefaultOn\": false\n    }\n]"}],"_postman_id":"1ff1b551-252d-488e-b792-e6f525ce757d"}],"id":"691aa97b-238f-4278-9b0b-46014e54e8d3","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":"691aa97b-238f-4278-9b0b-46014e54e8d3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add or Remove Bar","id":"e393d4ec-099b-40a5-bdd0-cfcc3e5aa020","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://abzorbapi.click2sign.co.uk:8074/api/bars/ToggleBar/?cli=<cli>&barSuffix=<bar_suffix>&toggle=<toggle_bar>&comment=<comment>","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<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://abzorbapi.click2sign.co.uk:8074/api/bars"],"query":[{"key":"cli","value":"<cli>"},{"key":"barSuffix","value":"<bar_suffix>"},{"key":"toggle","value":"<toggle_bar>"},{"key":"comment","value":"<comment>"}],"variable":[]}},"response":[{"id":"ab9faf82-9f2d-4ba4-8c63-1d2c3bb51f34","name":"Add or Remove Bar","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/bars/ToggleBar/?CLI=<cli>&BarSuffix=<bar_suffix>&Toggle=<toggle_bar>&Comment=<comment>","host":["https://abzorbapi.click2sign.co.uk:8074/api/bars"],"path":["ToggleBar",""],"query":[{"key":"CLI","value":"<cli>"},{"key":"BarSuffix","value":"<bar_suffix>"},{"key":"Toggle","value":"<toggle_bar>"},{"key":"Comment","value":"<comment>"}]}},"_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":"e393d4ec-099b-40a5-bdd0-cfcc3e5aa020"},{"name":"Get Active Bars for Connection","id":"54eda106-2157-4e79-ad27-a3e508567b1c","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Bars"],"query":[{"key":"contractIds","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"3ff67f92-890a-4f90-8396-6afd8380f57c","name":"Get Assigned Bars against Connection","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Bars/GetAssignedBars/?contractIds=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"54eda106-2157-4e79-ad27-a3e508567b1c"},{"name":"Get Available Bars for Connection","id":"2d0d7ede-52bb-4392-81de-0165d7cf21c4","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Bars"],"query":[{"key":"contractIds","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"591c61b9-f24e-4fc4-b3a3-e3bb70263554","name":"Get Available Bars for connection","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Bars/GetBars?ContractIDs=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"2d0d7ede-52bb-4392-81de-0165d7cf21c4"}],"id":"194d8bb2-e7ab-495b-b851-ac223faa2615","description":"<p>This subfolder contains the primary API calls for the <code>/api/bars</code>endpoint.</p>\n","_postman_id":"194d8bb2-e7ab-495b-b851-ac223faa2615","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"86b9b016-619c-4589-8eca-002ad2d9d4ac","description":"<p>The <code>/bars</code> endpoint allows you add, remove and view bars against mobile connections.</p>\n","_postman_id":"86b9b016-619c-4589-8eca-002ad2d9d4ac","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Bundles Management","item":[{"name":"Appendix","item":[{"name":"List Bundles for Network","id":"a7fecac6-0e98-40d0-a03a-a6f647b8c82c","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://abzorbapi.click2sign.co.uk:8074/api/api/Bundles/ListBundlesForNetwork?networkCode=<network_code>","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 against a specific network.</p>\n<p>Applicable <code>networkCode</code> values are listed below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Network</strong></th>\n<th><strong>Network ID</strong></th>\n<th><strong>Network Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>abZ</td>\n<td>40</td>\n<td>abz</td>\n</tr>\n<tr>\n<td>O2</td>\n<td>31</td>\n<td>o2</td>\n</tr>\n<tr>\n<td>Vodafone</td>\n<td>2</td>\n<td>vf</td>\n</tr>\n</tbody>\n</table>\n</div><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>networkCode</td>\n<td>string</td>\n<td>The network code for a specific network</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.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://abzorbapi.click2sign.co.uk:8074/api/api"],"query":[{"key":"networkCode","value":"<network_code>"}],"variable":[]}},"response":[{"id":"8b101043-b754-4966-bb3d-5e37998a9bb5","name":"Bundle List for Network","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}Bundles/ListBundlesForNetwork?NetworkCode=<network_code>","host":["{{baseUrl}}Bundles"],"path":["ListBundlesForNetwork"],"query":[{"key":"NetworkCode","value":"<network_code>"}]}},"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\": 1404,\n        \"Description\": \"O2 Data Overage Bundle\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 1405,\n        \"Description\": \"O2 Travel\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 1406,\n        \"Description\": \"O2 World Daily Data Roaming\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 1407,\n        \"Description\": \"O2 RoW Monthly Roaming Pass\",\n        \"ServiceRetailPrice\": 118.09\n    },\n    {\n        \"TariffOptionID\": 1408,\n        \"Description\": \"O2 Shared Minutes 100\",\n        \"ServiceRetailPrice\": 6.46\n    },\n    {\n        \"TariffOptionID\": 1409,\n        \"Description\": \"O2 Shared Minutes 500\",\n        \"ServiceRetailPrice\": 24.31\n    },\n    {\n        \"TariffOptionID\": 1410,\n        \"Description\": \"O2 Shared Minutes 1000\",\n        \"ServiceRetailPrice\": 40.52\n    },\n    {\n        \"TariffOptionID\": 1411,\n        \"Description\": \"O2 Blackberry BES 500MB\",\n        \"ServiceRetailPrice\": 35.9\n    },\n    {\n        \"TariffOptionID\": 1412,\n        \"Description\": \"O2 Blackberry BES 1GB\",\n        \"ServiceRetailPrice\": 38.18\n    },\n    {\n        \"TariffOptionID\": 1413,\n        \"Description\": \"O2 Data 500MB\",\n        \"ServiceRetailPrice\": 6.39\n    },\n    {\n        \"TariffOptionID\": 1414,\n        \"Description\": \"O2 Data 1GB\",\n        \"ServiceRetailPrice\": 10.66\n    },\n    {\n        \"TariffOptionID\": 1415,\n        \"Description\": \"O2 Data 2GB\",\n        \"ServiceRetailPrice\": 13.87\n    },\n    {\n        \"TariffOptionID\": 1416,\n        \"Description\": \"O2 Data 5GB\",\n        \"ServiceRetailPrice\": 21.37\n    },\n    {\n        \"TariffOptionID\": 1417,\n        \"Description\": \"O2 Data 8GB\",\n        \"ServiceRetailPrice\": 26.71\n    },\n    {\n        \"TariffOptionID\": 1418,\n        \"Description\": \"O2 Shared Minutes 5000\",\n        \"ServiceRetailPrice\": 202.6\n    },\n    {\n        \"TariffOptionID\": 1419,\n        \"Description\": \"O2 Shared Minutes 10000\",\n        \"ServiceRetailPrice\": 405.2\n    },\n    {\n        \"TariffOptionID\": 1420,\n        \"Description\": \"O2 Shared Minutes 20000\",\n        \"ServiceRetailPrice\": 810.4\n    },\n    {\n        \"TariffOptionID\": 1421,\n        \"Description\": \"O2 Shared Minutes 30000\",\n        \"ServiceRetailPrice\": 1215.6\n    },\n    {\n        \"TariffOptionID\": 1422,\n        \"Description\": \"O2 Shared Minutes 50000\",\n        \"ServiceRetailPrice\": 2026\n    },\n    {\n        \"TariffOptionID\": 1423,\n        \"Description\": \"O2 Shared Minutes 100000\",\n        \"ServiceRetailPrice\": 4052\n    },\n    {\n        \"TariffOptionID\": 1424,\n        \"Description\": \"O2 Shared Text 200\",\n        \"ServiceRetailPrice\": 2.5\n    },\n    {\n        \"TariffOptionID\": 1425,\n        \"Description\": \"O2 Shared Text 500\",\n        \"ServiceRetailPrice\": 5\n    },\n    {\n        \"TariffOptionID\": 1426,\n        \"Description\": \"O2 Shared Text 1000\",\n        \"ServiceRetailPrice\": 10\n    },\n    {\n        \"TariffOptionID\": 1427,\n        \"Description\": \"O2 Shared Text 2000\",\n        \"ServiceRetailPrice\": 20\n    },\n    {\n        \"TariffOptionID\": 1428,\n        \"Description\": \"O2 Shared Text 5000\",\n        \"ServiceRetailPrice\": 50\n    },\n    {\n        \"TariffOptionID\": 1429,\n        \"Description\": \"O2 Shared Text 10000\",\n        \"ServiceRetailPrice\": 100\n    },\n    {\n        \"TariffOptionID\": 1430,\n        \"Description\": \"O2 Shared Text 20000\",\n        \"ServiceRetailPrice\": 200\n    },\n    {\n        \"TariffOptionID\": 1431,\n        \"Description\": \"O2 Shared Text 30000\",\n        \"ServiceRetailPrice\": 300\n    },\n    {\n        \"TariffOptionID\": 1432,\n        \"Description\": \"O2 Unlimited Texts\",\n        \"ServiceRetailPrice\": 8.32\n    },\n    {\n        \"TariffOptionID\": 1433,\n        \"Description\": \"O2 Shared Data 10GB\",\n        \"ServiceRetailPrice\": 80\n    },\n    {\n        \"TariffOptionID\": 1434,\n        \"Description\": \"O2 Shared Data 20GB\",\n        \"ServiceRetailPrice\": 160\n    },\n    {\n        \"TariffOptionID\": 1435,\n        \"Description\": \"O2 Shared Data 30GB\",\n        \"ServiceRetailPrice\": 240\n    },\n    {\n        \"TariffOptionID\": 1436,\n        \"Description\": \"O2 Shared Data 40GB\",\n        \"ServiceRetailPrice\": 320\n    },\n    {\n        \"TariffOptionID\": 1437,\n        \"Description\": \"O2 Shared Data 50GB\",\n        \"ServiceRetailPrice\": 400\n    },\n    {\n        \"TariffOptionID\": 1438,\n        \"Description\": \"O2 Shared Data 75GB\",\n        \"ServiceRetailPrice\": 600\n    },\n    {\n        \"TariffOptionID\": 1439,\n        \"Description\": \"O2 Shared Data 100GB\",\n        \"ServiceRetailPrice\": 800\n    },\n    {\n        \"TariffOptionID\": 1440,\n        \"Description\": \"O2 Shared Data 150GB\",\n        \"ServiceRetailPrice\": 1200\n    },\n    {\n        \"TariffOptionID\": 1441,\n        \"Description\": \"O2 Shared Data 200GB\",\n        \"ServiceRetailPrice\": 1600\n    },\n    {\n        \"TariffOptionID\": 1442,\n        \"Description\": \"O2 Shared Data User\",\n        \"ServiceRetailPrice\": 3.4\n    },\n    {\n        \"TariffOptionID\": 1493,\n        \"Description\": \"Example O2 Data Bundle\",\n        \"ServiceRetailPrice\": 5.37\n    },\n    {\n        \"TariffOptionID\": 1494,\n        \"Description\": \"Example O2 Additional Service\",\n        \"ServiceRetailPrice\": 8\n    },\n    {\n        \"TariffOptionID\": 1533,\n        \"Description\": \"O2 Unlimited Landline Single\",\n        \"ServiceRetailPrice\": 3.4\n    },\n    {\n        \"TariffOptionID\": 1534,\n        \"Description\": \"O2 Data 3GB\",\n        \"ServiceRetailPrice\": 16.01\n    },\n    {\n        \"TariffOptionID\": 1535,\n        \"Description\": \"O2 Small Biz Unlimited Calls Bundle\",\n        \"ServiceRetailPrice\": 25.96\n    },\n    {\n        \"TariffOptionID\": 1536,\n        \"Description\": \"O2 BES\",\n        \"ServiceRetailPrice\": 12.82\n    },\n    {\n        \"TariffOptionID\": 1539,\n        \"Description\": \"O2 Data 100MB\",\n        \"ServiceRetailPrice\": 3.18\n    },\n    {\n        \"TariffOptionID\": 1540,\n        \"Description\": \"O2 Text 200\",\n        \"ServiceRetailPrice\": 2.5\n    },\n    {\n        \"TariffOptionID\": 1541,\n        \"Description\": \"O2 Text 500\",\n        \"ServiceRetailPrice\": 5\n    },\n    {\n        \"TariffOptionID\": 1618,\n        \"Description\": \"O2 Small Biz Unlimited Calls Bundle\",\n        \"ServiceRetailPrice\": 21\n    },\n    {\n        \"TariffOptionID\": 1619,\n        \"Description\": \"O2 Shared Data 5GB (2017)\",\n        \"ServiceRetailPrice\": 38.47\n    },\n    {\n        \"TariffOptionID\": 1620,\n        \"Description\": \"O2 Shared Data 10GB (2017)\",\n        \"ServiceRetailPrice\": 76.94\n    },\n    {\n        \"TariffOptionID\": 1621,\n        \"Description\": \"O2 Shared Data 20GB (2017)\",\n        \"ServiceRetailPrice\": 153.88\n    },\n    {\n        \"TariffOptionID\": 1622,\n        \"Description\": \"O2 Shared Data 30GB (2017)\",\n        \"ServiceRetailPrice\": 230.82\n    },\n    {\n        \"TariffOptionID\": 1623,\n        \"Description\": \"O2 Shared Data 40GB (2017)\",\n        \"ServiceRetailPrice\": 307.78\n    },\n    {\n        \"TariffOptionID\": 1624,\n        \"Description\": \"O2 Shared Data 50GB (2017)\",\n        \"ServiceRetailPrice\": 384.72\n    },\n    {\n        \"TariffOptionID\": 1625,\n        \"Description\": \"O2 Shared Data 75GB (2017)\",\n        \"ServiceRetailPrice\": 577.09\n    },\n    {\n        \"TariffOptionID\": 1626,\n        \"Description\": \"O2 Shared Data 100GB (2017)\",\n        \"ServiceRetailPrice\": 769.46\n    },\n    {\n        \"TariffOptionID\": 1627,\n        \"Description\": \"O2 Shared Data 200GB (2017)\",\n        \"ServiceRetailPrice\": 1538.92\n    },\n    {\n        \"TariffOptionID\": 1628,\n        \"Description\": \"O2 Shared Data User (2017)\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 1629,\n        \"Description\": \"O2 Shared Minutes 100 (2017)\",\n        \"ServiceRetailPrice\": 6.46\n    },\n    {\n        \"TariffOptionID\": 1630,\n        \"Description\": \"O2 Shared Minutes 500 (2017)\",\n        \"ServiceRetailPrice\": 24.31\n    },\n    {\n        \"TariffOptionID\": 1631,\n        \"Description\": \"O2 Shared Minutes 1000 (2017)\",\n        \"ServiceRetailPrice\": 40.52\n    },\n    {\n        \"TariffOptionID\": 1632,\n        \"Description\": \"O2 Shared Minutes 5000 (2017)\",\n        \"ServiceRetailPrice\": 202.6\n    },\n    {\n        \"TariffOptionID\": 1633,\n        \"Description\": \"O2 Shared Minutes 10000 (2017)\",\n        \"ServiceRetailPrice\": 405.2\n    },\n    {\n        \"TariffOptionID\": 1634,\n        \"Description\": \"O2 Shared Minutes 20000 (2017)\",\n        \"ServiceRetailPrice\": 810.4\n    },\n    {\n        \"TariffOptionID\": 1635,\n        \"Description\": \"O2 Shared Minutes 30000 (2017)\",\n        \"ServiceRetailPrice\": 1215.6\n    },\n    {\n        \"TariffOptionID\": 1636,\n        \"Description\": \"O2 Shared Minutes 50000 (2017)\",\n        \"ServiceRetailPrice\": 2026\n    },\n    {\n        \"TariffOptionID\": 1637,\n        \"Description\": \"O2 Shared Minutes 100000 (2017)\",\n        \"ServiceRetailPrice\": 4052\n    },\n    {\n        \"TariffOptionID\": 1660,\n        \"Description\": \"O2 International Mins 120\",\n        \"ServiceRetailPrice\": 6.39\n    },\n    {\n        \"TariffOptionID\": 1661,\n        \"Description\": \"O2 International Mins 500\",\n        \"ServiceRetailPrice\": 19.23\n    },\n    {\n        \"TariffOptionID\": 1662,\n        \"Description\": \"O2 International Shared Mins 1000\",\n        \"ServiceRetailPrice\": 50\n    },\n    {\n        \"TariffOptionID\": 1663,\n        \"Description\": \"O2 International Shared Mins 3000\",\n        \"ServiceRetailPrice\": 150\n    },\n    {\n        \"TariffOptionID\": 1664,\n        \"Description\": \"O2 International Shared Mins 5000\",\n        \"ServiceRetailPrice\": 250\n    },\n    {\n        \"TariffOptionID\": 1665,\n        \"Description\": \"O2 International Texts 100\",\n        \"ServiceRetailPrice\": 6.39\n    },\n    {\n        \"TariffOptionID\": 1666,\n        \"Description\": \"O2 International Shared Texts 1000\",\n        \"ServiceRetailPrice\": 40\n    },\n    {\n        \"TariffOptionID\": 1668,\n        \"Description\": \"O2 International Mins 180\",\n        \"ServiceRetailPrice\": 6.39\n    },\n    {\n        \"TariffOptionID\": 1669,\n        \"Description\": \"O2 International to Ireland\",\n        \"ServiceRetailPrice\": 5.34\n    },\n    {\n        \"TariffOptionID\": 1670,\n        \"Description\": \"O2 Shared Data 250GB (2018)\",\n        \"ServiceRetailPrice\": 1923.65\n    },\n    {\n        \"TariffOptionID\": 1671,\n        \"Description\": \"O2 Shared Data 500GB (2018)\",\n        \"ServiceRetailPrice\": 3847.32\n    },\n    {\n        \"TariffOptionID\": 1672,\n        \"Description\": \"O2 Shared Data 750GB (2018)\",\n        \"ServiceRetailPrice\": 5770.97\n    },\n    {\n        \"TariffOptionID\": 1673,\n        \"Description\": \"O2 50 MMS\",\n        \"ServiceRetailPrice\": 5.34\n    },\n    {\n        \"TariffOptionID\": 1674,\n        \"Description\": \"O2 100 MMS\",\n        \"ServiceRetailPrice\": 7.99\n    },\n    {\n        \"TariffOptionID\": 1675,\n        \"Description\": \"O2 Private APN\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 1852,\n        \"Description\": \"O2 Shared Data 150GB (2018)\",\n        \"ServiceRetailPrice\": 1154.19\n    },\n    {\n        \"TariffOptionID\": 1901,\n        \"Description\": \"O2 Shared Data 5GB (2021)\",\n        \"ServiceRetailPrice\": 19.23\n    },\n    {\n        \"TariffOptionID\": 1903,\n        \"Description\": \"O2 Shared Data 10GB (2021)\",\n        \"ServiceRetailPrice\": 38.47\n    },\n    {\n        \"TariffOptionID\": 1905,\n        \"Description\": \"O2 Shared Data 20GB (2021)\",\n        \"ServiceRetailPrice\": 115.41\n    },\n    {\n        \"TariffOptionID\": 1907,\n        \"Description\": \"O2 Shared Data 30GB (2021)\",\n        \"ServiceRetailPrice\": 115.41\n    },\n    {\n        \"TariffOptionID\": 1909,\n        \"Description\": \"O2 Shared Data 40GB (2021)\",\n        \"ServiceRetailPrice\": 153.88\n    },\n    {\n        \"TariffOptionID\": 1911,\n        \"Description\": \"O2 Shared Data 50GB (2021)\",\n        \"ServiceRetailPrice\": 192.35\n    },\n    {\n        \"TariffOptionID\": 1913,\n        \"Description\": \"O2 Shared Data 75GB (2021)\",\n        \"ServiceRetailPrice\": 288.54\n    },\n    {\n        \"TariffOptionID\": 1915,\n        \"Description\": \"O2 Shared Data 100GB (2021)\",\n        \"ServiceRetailPrice\": 384.72\n    },\n    {\n        \"TariffOptionID\": 1917,\n        \"Description\": \"O2 Shared Data 150GB (2021)\",\n        \"ServiceRetailPrice\": 577.09\n    },\n    {\n        \"TariffOptionID\": 1919,\n        \"Description\": \"O2 Shared Data 200GB (2021)\",\n        \"ServiceRetailPrice\": 769.46\n    },\n    {\n        \"TariffOptionID\": 1921,\n        \"Description\": \"O2 Shared Data 250GB (2021)\",\n        \"ServiceRetailPrice\": 961.82\n    },\n    {\n        \"TariffOptionID\": 1923,\n        \"Description\": \"O2 Shared Data 500GB (2021)\",\n        \"ServiceRetailPrice\": 1923.65\n    },\n    {\n        \"TariffOptionID\": 1925,\n        \"Description\": \"O2 Shared Data 750GB (2021)\",\n        \"ServiceRetailPrice\": 2885.48\n    },\n    {\n        \"TariffOptionID\": 2072,\n        \"Description\": \"O2 UK 50 MMS\",\n        \"ServiceRetailPrice\": 4.96\n    },\n    {\n        \"TariffOptionID\": 2074,\n        \"Description\": \"O2 UK 100 MMS\",\n        \"ServiceRetailPrice\": 7.44\n    },\n    {\n        \"TariffOptionID\": 2076,\n        \"Description\": \"O2 UK to Int RoW Mins 100\",\n        \"ServiceRetailPrice\": 4.76\n    },\n    {\n        \"TariffOptionID\": 2078,\n        \"Description\": \"O2 UK to Int RoW Mins 500\",\n        \"ServiceRetailPrice\": 7.15\n    },\n    {\n        \"TariffOptionID\": 2080,\n        \"Description\": \"O2 UK to EU Mins 180\",\n        \"ServiceRetailPrice\": 5.96\n    },\n    {\n        \"TariffOptionID\": 2082,\n        \"Description\": \"O2 UK to Ireland\",\n        \"ServiceRetailPrice\": 3.57\n    },\n    {\n        \"TariffOptionID\": 2084,\n        \"Description\": \"O2 UK to All Int Text 100\",\n        \"ServiceRetailPrice\": 5.96\n    },\n    {\n        \"TariffOptionID\": 2086,\n        \"Description\": \"O2 Shared Data 5GB (2022)\",\n        \"ServiceRetailPrice\": 17.89\n    },\n    {\n        \"TariffOptionID\": 2088,\n        \"Description\": \"O2 Shared Data 10GB (2022)\",\n        \"ServiceRetailPrice\": 35.78\n    },\n    {\n        \"TariffOptionID\": 2090,\n        \"Description\": \"O2 Shared Data 20GB (2022)\",\n        \"ServiceRetailPrice\": 71.57\n    },\n    {\n        \"TariffOptionID\": 2092,\n        \"Description\": \"O2 Shared Data 30GB (2022)\",\n        \"ServiceRetailPrice\": 107.36\n    },\n    {\n        \"TariffOptionID\": 2094,\n        \"Description\": \"O2 Shared Data 40GB (2022)\",\n        \"ServiceRetailPrice\": 143.15\n    },\n    {\n        \"TariffOptionID\": 2096,\n        \"Description\": \"O2 Shared Data 50GB (2022)\",\n        \"ServiceRetailPrice\": 178.94\n    },\n    {\n        \"TariffOptionID\": 2098,\n        \"Description\": \"O2 Shared Data 60GB (2022)\",\n        \"ServiceRetailPrice\": 214.73\n    },\n    {\n        \"TariffOptionID\": 2100,\n        \"Description\": \"O2 Shared Data 70GB (2022)\",\n        \"ServiceRetailPrice\": 250.52\n    },\n    {\n        \"TariffOptionID\": 2102,\n        \"Description\": \"O2 Shared Data 80GB (2022)\",\n        \"ServiceRetailPrice\": 286.31\n    },\n    {\n        \"TariffOptionID\": 2104,\n        \"Description\": \"O2 Shared Data 90GB (2022)\",\n        \"ServiceRetailPrice\": 322.1\n    },\n    {\n        \"TariffOptionID\": 2106,\n        \"Description\": \"O2 Shared Data 100GB (2022)\",\n        \"ServiceRetailPrice\": 357.89\n    },\n    {\n        \"TariffOptionID\": 2108,\n        \"Description\": \"O2 Shared Data 200GB (2022)\",\n        \"ServiceRetailPrice\": 715.78\n    },\n    {\n        \"TariffOptionID\": 2110,\n        \"Description\": \"O2 Shared Data 300GB (2022)\",\n        \"ServiceRetailPrice\": 1073.67\n    },\n    {\n        \"TariffOptionID\": 2112,\n        \"Description\": \"O2 Shared Data 400GB (2022)\",\n        \"ServiceRetailPrice\": 1431.56\n    },\n    {\n        \"TariffOptionID\": 2114,\n        \"Description\": \"O2 Shared Data 500GB (2022)\",\n        \"ServiceRetailPrice\": 1789.45\n    },\n    {\n        \"TariffOptionID\": 2116,\n        \"Description\": \"O2 Shared Data 600GB (2022)\",\n        \"ServiceRetailPrice\": 2147.34\n    },\n    {\n        \"TariffOptionID\": 2118,\n        \"Description\": \"O2 Shared Data 700GB (2022)\",\n        \"ServiceRetailPrice\": 2505.23\n    },\n    {\n        \"TariffOptionID\": 2120,\n        \"Description\": \"O2 Shared Data 800GB (2022)\",\n        \"ServiceRetailPrice\": 2863.12\n    },\n    {\n        \"TariffOptionID\": 2122,\n        \"Description\": \"O2 Shared Data 900GB (2022)\",\n        \"ServiceRetailPrice\": 3221.01\n    },\n    {\n        \"TariffOptionID\": 2260,\n        \"Description\": \"O2 Shared International Mins 1000\",\n        \"ServiceRetailPrice\": 59.64\n    },\n    {\n        \"TariffOptionID\": 2261,\n        \"Description\": \"O2 Shared International Mins 3000\",\n        \"ServiceRetailPrice\": 178.94\n    },\n    {\n        \"TariffOptionID\": 2262,\n        \"Description\": \"O2 Shared International Mins 5000\",\n        \"ServiceRetailPrice\": 298.24\n    },\n    {\n        \"TariffOptionID\": 2263,\n        \"Description\": \"O2 Shared International SMS 1000\",\n        \"ServiceRetailPrice\": 47.71\n    },\n    {\n        \"TariffOptionID\": 2297,\n        \"Description\": \"O2 International Discount\",\n        \"ServiceRetailPrice\": 6.43\n    },\n    {\n        \"TariffOptionID\": 2298,\n        \"Description\": \"O2 Business Shared Data 25GB\",\n        \"ServiceRetailPrice\": 89.47\n    },\n    {\n        \"TariffOptionID\": 2299,\n        \"Description\": \"O2 Business Shared Data 50GB\",\n        \"ServiceRetailPrice\": 178.94\n    },\n    {\n        \"TariffOptionID\": 2300,\n        \"Description\": \"O2 Business Shared Data 75GB\",\n        \"ServiceRetailPrice\": 268.41\n    },\n    {\n        \"TariffOptionID\": 2301,\n        \"Description\": \"O2 Business Shared Data 100GB\",\n        \"ServiceRetailPrice\": 357.89\n    },\n    {\n        \"TariffOptionID\": 2302,\n        \"Description\": \"O2 Business Shared Data 250GB\",\n        \"ServiceRetailPrice\": 894.72\n    },\n    {\n        \"TariffOptionID\": 2303,\n        \"Description\": \"O2 Business Shared Data 500GB\",\n        \"ServiceRetailPrice\": 1789.45\n    },\n    {\n        \"TariffOptionID\": 2304,\n        \"Description\": \"O2 Business Shared Data 1TB\",\n        \"ServiceRetailPrice\": 3578.9\n    },\n    {\n        \"TariffOptionID\": 2305,\n        \"Description\": \"O2 Business Shared Data 2TB\",\n        \"ServiceRetailPrice\": 7157.8\n    },\n    {\n        \"TariffOptionID\": 2306,\n        \"Description\": \"O2 Business Shared Data 5TB\",\n        \"ServiceRetailPrice\": 17894.52\n    },\n    {\n        \"TariffOptionID\": 2745,\n        \"Description\": \"O2 Data Step Bundle\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 2798,\n        \"Description\": \"O2 Data Top Up 1GB\",\n        \"ServiceRetailPrice\": 7.95\n    },\n    {\n        \"TariffOptionID\": 2799,\n        \"Description\": \"O2 Data Top Up 5GB\",\n        \"ServiceRetailPrice\": 18.35\n    },\n    {\n        \"TariffOptionID\": 2801,\n        \"Description\": \"O2 Data Top Up 10GB\",\n        \"ServiceRetailPrice\": 24.47\n    },\n    {\n        \"TariffOptionID\": 2802,\n        \"Description\": \"O2 Data Top Up 50GB\",\n        \"ServiceRetailPrice\": 30.58\n    },\n    {\n        \"TariffOptionID\": 2803,\n        \"Description\": \"O2 UK to Int RoW Mins 120\",\n        \"ServiceRetailPrice\": 5.39\n    },\n    {\n        \"TariffOptionID\": 2804,\n        \"Description\": \"O2 World Daily Data Roaming (capped)\",\n        \"ServiceRetailPrice\": 0\n    },\n    {\n        \"TariffOptionID\": 2805,\n        \"Description\": \"O2 UK to Ireland (2024)\",\n        \"ServiceRetailPrice\": 3\n    },\n    {\n        \"TariffOptionID\": 2806,\n        \"Description\": \"O2 UK to All Int Text 100 (2024)\",\n        \"ServiceRetailPrice\": 5\n    },\n    {\n        \"TariffOptionID\": 2807,\n        \"Description\": \"O2 UK 50 MMS (2024)\",\n        \"ServiceRetailPrice\": 4.17\n    },\n    {\n        \"TariffOptionID\": 2808,\n        \"Description\": \"O2 UK 100 MMS (2024)\",\n        \"ServiceRetailPrice\": 6.25\n    },\n    {\n        \"TariffOptionID\": 2809,\n        \"Description\": \"O2 Business Shared Data 25GB (2024)\",\n        \"ServiceRetailPrice\": 75\n    },\n    {\n        \"TariffOptionID\": 2810,\n        \"Description\": \"O2 Business Shared Data 50GB (2024)\",\n        \"ServiceRetailPrice\": 150\n    },\n    {\n        \"TariffOptionID\": 2811,\n        \"Description\": \"O2 Business Shared Data 75GB (2024)\",\n        \"ServiceRetailPrice\": 225\n    },\n    {\n        \"TariffOptionID\": 2812,\n        \"Description\": \"O2 Business Shared Data 100GB (2024)\",\n        \"ServiceRetailPrice\": 300\n    },\n    {\n        \"TariffOptionID\": 2813,\n        \"Description\": \"O2 Business Shared Data 250GB (2024)\",\n        \"ServiceRetailPrice\": 750\n    },\n    {\n        \"TariffOptionID\": 2814,\n        \"Description\": \"O2 Business Shared Data 500GB (2024)\",\n        \"ServiceRetailPrice\": 1500\n    },\n    {\n        \"TariffOptionID\": 2815,\n        \"Description\": \"O2 Business Shared Data 1TB (2024)\",\n        \"ServiceRetailPrice\": 3000\n    },\n    {\n        \"TariffOptionID\": 2816,\n        \"Description\": \"O2 Business Shared Data 2TB (2024)\",\n        \"ServiceRetailPrice\": 6000\n    },\n    {\n        \"TariffOptionID\": 2817,\n        \"Description\": \"O2 Business Shared Data 5TB (2024)\",\n        \"ServiceRetailPrice\": 15000\n    },\n    {\n        \"TariffOptionID\": 2818,\n        \"Description\": \"O2 International Discount (2024)\",\n        \"ServiceRetailPrice\": 5.4\n    },\n    {\n        \"TariffOptionID\": 2819,\n        \"Description\": \"O2 UK to Europe 100 (2024)\",\n        \"ServiceRetailPrice\": 5\n    },\n    {\n        \"TariffOptionID\": 2820,\n        \"Description\": \"O2 UK to Europe 400 (2024)\",\n        \"ServiceRetailPrice\": 8.5\n    },\n    {\n        \"TariffOptionID\": 2821,\n        \"Description\": \"O2 UK to Europe 800 (2024)\",\n        \"ServiceRetailPrice\": 12.5\n    },\n    {\n        \"TariffOptionID\": 2822,\n        \"Description\": \"O2 UK to Everywhere 100 (2024)\",\n        \"ServiceRetailPrice\": 10\n    },\n    {\n        \"TariffOptionID\": 2823,\n        \"Description\": \"O2 UK to Everywhere 400 (2024)\",\n        \"ServiceRetailPrice\": 40\n    },\n    {\n        \"TariffOptionID\": 2824,\n        \"Description\": \"O2 UK to Everywhere 800 (2024)\",\n        \"ServiceRetailPrice\": 80\n    },\n    {\n        \"TariffOptionID\": 2825,\n        \"Description\": \"O2 Worldwide 50GB (2024)\",\n        \"ServiceRetailPrice\": 125\n    },\n    {\n        \"TariffOptionID\": 2826,\n        \"Description\": \"O2 Worldwide 100GB (2024)\",\n        \"ServiceRetailPrice\": 200\n    },\n    {\n        \"TariffOptionID\": 2827,\n        \"Description\": \"O2 Worldwide 250 Minutes (2024)\",\n        \"ServiceRetailPrice\": 125\n    },\n    {\n        \"TariffOptionID\": 2828,\n        \"Description\": \"O2 Worldwide 500 Minutes (2024)\",\n        \"ServiceRetailPrice\": 200\n    }\n]"}],"_postman_id":"a7fecac6-0e98-40d0-a03a-a6f647b8c82c"},{"name":"List Bundles for Tariff","id":"93402a5b-45ee-45a8-92c7-389575e0e70b","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://abzorbapi.click2sign.co.uk:8074/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 bars that are currently active against the provided contract IDs.</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://abzorbapi.click2sign.co.uk:8074/api/Bundles"],"query":[{"key":"tariffId","value":"<tariff_id>"}],"variable":[]}},"response":[{"id":"1f59f60f-caf3-4ca9-aef4-91b4d33da5d2","name":"Get Valid Bundles - Appendix","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}Bundles/GetValidBundles?tariffID=<tariff_id>","host":["{{baseUrl}}Bundles"],"path":["GetValidBundles"],"query":[{"key":"tariffID","value":"<tariff_id>"}]}},"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:11:30 GMT"},{"key":"Content-Length","value":"293"}],"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":"93402a5b-45ee-45a8-92c7-389575e0e70b"}],"id":"c79c684b-223b-43fc-aaa3-369637cd943c","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":"c79c684b-223b-43fc-aaa3-369637cd943c","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add Bundle","id":"70d0fdf3-561b-407c-873a-2f662a31b595","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://abzorbapi.click2sign.co.uk:8074/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<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://abzorbapi.click2sign.co.uk:8074/api/Bundles"],"query":[{"key":"tariffOptionId","value":"<tariff_option_id>"},{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"61e86803-c89a-4895-811e-a30857b5c837","name":"Add Bundle","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Bundles/AddBundles?TariffIDs=<tariff_id>&ContractID=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/api/Bundles"],"path":["AddBundles"],"query":[{"key":"TariffIDs","value":"<tariff_id>"},{"key":"ContractID","value":"<contract_ids>"}]}},"_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":"70d0fdf3-561b-407c-873a-2f662a31b595"},{"name":"Remove Bundle","id":"f20d04f3-b0c3-42b8-b108-3d6cf6abc67c","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://abzorbapi.click2sign.co.uk:8074/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>Allows for a bundle to be removed from a 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>tariffOptionId</td>\n<td>string</td>\n<td>The unique ID of the bundle to be removed.</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>string</td>\n<td>The unique identifier of the mobile number the bundle will be added to</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://abzorbapi.click2sign.co.uk:8074/api/Bundles"],"query":[{"key":"tariffOptionId","value":"<tariff_option_id>"},{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"b7aa7d9f-7d5b-4d23-b9a9-ddd69284015a","name":"Remove Bundle","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Bundles/RemoveBundles?TariffIDs=<tariff_id>&ContractID=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/api/Bundles"],"path":["RemoveBundles"],"query":[{"key":"TariffIDs","value":"<tariff_id>"},{"key":"ContractID","value":"<contract_ids>"}]}},"_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":"f20d04f3-b0c3-42b8-b108-3d6cf6abc67c"},{"name":"Get Active Bundles for Connection","id":"cb95da40-840d-47a1-aed8-922d90c1d25d","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    123456\r\n]","options":{"raw":{"language":"json"}}},"url":"https://abzorbapi.click2sign.co.uk:8074/api/Bundles/GetAssignedBundles","description":"<h2 id=\"get-assigned-bundles\">Get Assigned Bundles</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/Bars/GetAssignedBundles/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Retrieves bundles that are currently active against the provided contract IDs. The contracts must be supplied as a <strong>list of contract IDs</strong> in the request body.</p>\n<h3 id=\"method\">Method</h3>\n<p><code>`POST`</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n    12345,\n    67890,\n    24680\n]\n\n</code></pre>\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      \"ContractId\": 123456,\n      \"TariffOptionID\": 1234,\n      \"Description\":\"O2 World Daily Data Roaming\",\n      \"BundleStartDate\":\"2024-06-12T00:00:00\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["GetAssignedBundles"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Bundles"],"query":[],"variable":[]}},"response":[{"id":"23d168c1-f27a-4632-b780-602d0249a67f","name":"Get Active Bundles for Connection","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n    123456\r\n]","options":{"raw":{"language":"json"}}},"url":"https://abzorbapi.click2sign.co.uk:8074/api/Bundles/GetAssignedBundles"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n   {\n      \"ContractId\": 123456,\n      \"TariffOptionID\": 1234,\n      \"Description\":\"O2 World Daily Data Roaming\",\n      \"BundleStartDate\":\"2024-06-12T00:00:00\"\n   }\n]\n"}],"_postman_id":"cb95da40-840d-47a1-aed8-922d90c1d25d"}],"id":"38a234eb-d67f-4ff5-bdf2-3e9d61bed5f0","_postman_id":"38a234eb-d67f-4ff5-bdf2-3e9d61bed5f0","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"6d807708-8bbb-434b-ba8e-79e825a6f795","description":"<p>The <code>/bundles</code> endpoint allows for bundles to be viewed, added and removed against mobile connections.</p>\n","_postman_id":"6d807708-8bbb-434b-ba8e-79e825a6f795","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"CLI Management","item":[{"name":"Appendix","item":[],"id":"b020ae2c-e3a5-483b-9920-4823111c970d","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":"b020ae2c-e3a5-483b-9920-4823111c970d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get Connection(s) for Customer","id":"87a390ee-b881-424d-b58f-4da0fb69a201","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/api"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"75bfd731-6403-40ab-b173-d6e30d9c1247","name":"Get Connection By CLI Copy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YXdhaXMuaHVzc2FpbkBhYnpvcmIuY28udWs6cGFzc3dvcmQ="}],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Connections/GetConnectionByCLI?CLI=<cli>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"87a390ee-b881-424d-b58f-4da0fb69a201"},{"name":"Get All Connections","id":"bb3e9013-55c2-41b4-8d8d-7f07bb41ac7f","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/"],"query":[],"variable":[]}},"response":[{"id":"650912bc-11c9-4d8a-9855-0e707aecf6b5","name":"Get Connection(s) using CustomerID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YXBpQHplbmludGVybmV0LmNvLnVrOkFjRTU2UlZqQkVHcDdZeWE="}],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/api/Connections/GetConnectionByCustomerID?CustomerID=<customer_id>","host":["https://abzorbapi.click2sign.co.uk:8074/api/api"],"path":["Connections","GetConnectionByCustomerID"],"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      \"Network\":\"\",\n      \"Bars\":[\n      ],\n      \"Bundles\":[\n \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]"},{"id":"484e7d8b-0485-4458-86f2-e6f78de11f79","name":"Get All Connections","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"bb3e9013-55c2-41b4-8d8d-7f07bb41ac7f"},{"name":"Get Connection By CLI","id":"4e3e0c52-985e-4037-b89c-7b5a74400ab0","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://abzorbapi.click2sign.co.uk:8074/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 including key CapZ settings</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://abzorbapi.click2sign.co.uk:8074/api/api"],"query":[{"key":"cli","value":"<cli>"}],"variable":[]}},"response":[{"id":"4394df02-b545-4b91-b31f-0daf6b0e5ced","name":"Get Connection By CLI","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Basic YXdhaXMuaHVzc2FpbkBhYnpvcmIuY28udWs6cGFzc3dvcmQ="}],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Connections/GetConnectionByCLI?CLI=<cli>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"4e3e0c52-985e-4037-b89c-7b5a74400ab0"}],"id":"532b6386-09b5-46e0-b081-98c40168feae","description":"<p>This subfolder contains the primary API calls for the <code>/api/cli</code>endpoint.</p>\n","_postman_id":"532b6386-09b5-46e0-b081-98c40168feae","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"3cf7765d-c7a5-4e5c-8753-5d3c6c2c424a","description":"<p>The <code>/connections</code> endpoint is used to manage all connections associated to the API user.</p>\n","_postman_id":"3cf7765d-c7a5-4e5c-8753-5d3c6c2c424a","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Customer Management","item":[{"name":"Appendix","item":[{"name":"Get Customer Business Types","id":"eed0f274-d8a6-49e5-8e28-cc0790c8b338","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Customer"],"query":[],"variable":[]}},"response":[{"id":"aa274d25-f00c-4ea4-9048-f26a7fef4354","name":"Get Customer Business Types","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"eed0f274-d8a6-49e5-8e28-cc0790c8b338"}],"id":"073eff62-9fc0-4bcb-a425-e7e40581b7a0","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":"073eff62-9fc0-4bcb-a425-e7e40581b7a0","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","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":"89cc3f70-d994-4387-acb4-80dde3ed13b1"}}],"id":"aa75dbf3-b4bc-41a4-b179-f739d07f7b30","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://abzorbapi.click2sign.co.uk:8074/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<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://abzorbapi.click2sign.co.uk:8074/api/Customer"],"query":[],"variable":[]}},"response":[{"id":"c1084f11-5d77-4ea4-a889-14a6b65f9d49","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://abzorbapi.click2sign.co.uk:8074/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":"aa75dbf3-b4bc-41a4-b179-f739d07f7b30"},{"name":"Get All Customers","id":"01615328-f8f8-4687-8a7e-9ede91da097d","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Customer"],"query":[],"variable":[]}},"response":[{"id":"80a42d09-349a-4aeb-b45e-1c8c65bd8f7c","name":"Get All Customers","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"01615328-f8f8-4687-8a7e-9ede91da097d"},{"name":"Get Individual Customer Details","id":"be91b5a8-a794-4bfe-9547-4b32ee6c8e62","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Customer"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"e6721982-2707-46f6-9eab-57fa3c31b4db","name":"Get Individual Customer Details","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"be91b5a8-a794-4bfe-9547-4b32ee6c8e62"}],"id":"80702f15-9173-4173-9f90-d1fb30c30ebb","description":"<p>This subfolder contains the primary API calls for the <code>/api/main</code>endpoint.</p>\n","_postman_id":"80702f15-9173-4173-9f90-d1fb30c30ebb","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"8635ed0f-a96b-4f33-8fc7-d895d2aa8ea1","description":"<p>The <code>/customer</code> endpoint allows new customers to be created and existing customer information to be retrieved.</p>\n","_postman_id":"8635ed0f-a96b-4f33-8fc7-d895d2aa8ea1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Divert Controller","item":[{"name":"Appendix","item":[],"id":"2a1f2514-272e-4554-9285-302829b59249","_postman_id":"2a1f2514-272e-4554-9285-302829b59249","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add or Remove Divert","id":"91832176-06ef-41aa-ba25-0e0f3e11973b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/Divert/DivertHandset?cli=<cli>&contractId=<contract_ids>&divertCli=&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<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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["DivertHandset"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Divert"],"query":[{"key":"cli","value":"<cli>"},{"key":"contractId","value":"<contract_ids>"},{"key":"divertCli","value":""},{"key":"toggleStatus","value":"<toggle_bar>"}],"variable":[]}},"response":[{"id":"de150b0f-2697-4c79-af21-03ef0ef7dec9","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}"}],"_postman_id":"91832176-06ef-41aa-ba25-0e0f3e11973b"},{"name":"Check Divert Status","id":"ffda1745-b593-447c-9ac6-bbe282dfc0f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["CheckDivertStatus"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Divert"],"query":[{"key":"cli","value":"<cli>"},{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"87e28fc8-85bc-422d-ab2e-adce11799071","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":"ddef4b40-2b0d-403d-b7c3-829a140c282b","name":"Check Divert Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Divert/CheckDivertStatus?cli=<cli>&contractId=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"ffda1745-b593-447c-9ac6-bbe282dfc0f1"}],"id":"2410838d-1b73-44bc-8fbe-13a04962d9ca","_postman_id":"2410838d-1b73-44bc-8fbe-13a04962d9ca","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"18b95165-b5a2-482e-ac74-b307740e5729","description":"<p>Divert related API calls</p>\n","_postman_id":"18b95165-b5a2-482e-ac74-b307740e5729","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Order Controller","item":[{"name":"Appendix","item":[{"name":"Bill Cap Eligible Tariffs","id":"22b7f5a3-253d-4ec3-8ae5-c317984e0ad3","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://abzorbapi.click2sign.co.uk:8074/api/Order/BillCapEligibleTariffs?networkCode=<network_code>","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 for a specific network,</p>\n<p>Applicable <code>networkCode</code> values are listed below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Network</strong></th>\n<th><strong>Network ID</strong></th>\n<th><strong>Network Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>abZ</td>\n<td>40</td>\n<td>abz</td>\n</tr>\n<tr>\n<td>O2</td>\n<td>31</td>\n<td>o2</td>\n</tr>\n<tr>\n<td>Vodafone</td>\n<td>2</td>\n<td>vf</td>\n</tr>\n</tbody>\n</table>\n</div><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>networkCode</td>\n<td>string</td>\n<td><strong>Yes</strong></td>\n<td>Code representing the specific network</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  \"TariffID\": 0,\n  \"TariffName\": \"\",\n  \"RetailCost\": 0.0\n}\n\n</code></pre>\n","urlObject":{"path":["BillCapEligibleTariffs"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"networkCode","value":"<network_code>"}],"variable":[]}},"response":[{"id":"810a9b36-560a-4199-8ae4-b3127b8ef3a3","name":"Bill Cap Eligible Tariffs","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/BillCapEligibleTariffs?networkCode=<network_code>","host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"path":["BillCapEligibleTariffs"],"query":[{"key":"networkCode","value":"<network_code>"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"TariffID\": 0,\n    \"TariffName\": \"\",\n    \"RetailCost\": 0\n}"}],"_postman_id":"22b7f5a3-253d-4ec3-8ae5-c317984e0ad3"},{"name":"Mobile Connection Types","id":"306e5628-e3e4-41d6-8a6e-302fefd1d98c","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[],"variable":[]}},"response":[{"id":"76a33aff-814b-4924-908b-4492c02d2e61","name":"Mobile Connection Types","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"306e5628-e3e4-41d6-8a6e-302fefd1d98c"},{"name":"Get Order Status Types","id":"c8e8ef8d-e43b-4bb4-bc31-688f2fcfeea7","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://abzorbapi.click2sign.co.uk:8074/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\": 0,\n        \"Description\": \"Draft\"\n    },\n    {\n        \"OrderStatusID\": 2,\n        \"Description\": \"With Customer\"\n    },\n    {\n        \"OrderStatusID\": 3,\n        \"Description\": \"Customer Signed\"\n    },\n    {\n        \"OrderStatusID\": 4,\n        \"Description\": \"Completed\"\n    },\n    {\n        \"OrderStatusID\": 5,\n        \"Description\": \"Archived\"\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetOrderStatusTypes"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[],"variable":[]}},"response":[{"id":"dab2f94d-6d1e-404b-ad84-9cccf71bb9d8","name":"Get Order Status Types","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/Order/GetOrderStatusTypes"},"code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"OrderStatusID\": 0,\r\n        \"Description\": \"Draft\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 2,\r\n        \"Description\": \"With Customer\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 3,\r\n        \"Description\": \"Customer Signed\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 4,\r\n        \"Description\": \"Completed\"\r\n    },\r\n    {\r\n        \"OrderStatusID\": 5,\r\n        \"Description\": \"Archived\"\r\n    }\r\n]"}],"_postman_id":"c8e8ef8d-e43b-4bb4-bc31-688f2fcfeea7"},{"name":"List Available Numbers","id":"fc3d715e-d29a-4087-9d38-1fadfab1359a","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://abzorbapi.click2sign.co.uk:8074/api/Order/ListAvailableNumbers?networkCode=<network_code>","description":"<h1 id=\"list-available-numbers\">List Available Numbers</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /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<p>Applicable <code>networkCode</code> values are listed below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Network</strong></th>\n<th><strong>Network ID</strong></th>\n<th><strong>Network Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>O2</td>\n<td>31</td>\n<td>o2</td>\n</tr>\n<tr>\n<td>Vodafone</td>\n<td>2</td>\n<td>vf</td>\n</tr>\n</tbody>\n</table>\n</div><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>networkCode</td>\n<td>String</td>\n<td><strong>Yes</strong></td>\n<td>Code representing the specific network</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      \"MobileNumber\": \"\"\n   }\n]\n\n</code></pre>\n","urlObject":{"path":["ListAvailableNumbers"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"networkCode","value":"<network_code>"}],"variable":[]}},"response":[{"id":"8e65a855-19eb-4724-bb12-5042cec6fa0b","name":"List Available Numbers","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/ListAvailableNumbers?networkCode=<network_code>","host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"path":["ListAvailableNumbers"],"query":[{"key":"networkCode","value":"<network_code>"}]}},"_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":"fc3d715e-d29a-4087-9d38-1fadfab1359a"},{"name":"Get Network Codes","id":"40466643-29dc-4949-8215-99678b4bfe48","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[],"variable":[]}},"response":[{"id":"7abf06c5-6fd2-423a-a4f2-f98872c50f1b","name":"Get Network Codes","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"40466643-29dc-4949-8215-99678b4bfe48"}],"id":"e894d053-4983-4e8e-b612-a55eaf6598d2","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":"e894d053-4983-4e8e-b612-a55eaf6598d2","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add Bar To Draft Mobile Order","id":"d701e691-9bd0-4c17-9907-ce00ba269ecf","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"connectionId","value":"<connection_id>"},{"key":"tariffLevelOptionId","value":"<tariff_level_opton_id>"}],"variable":[]}},"response":[{"id":"cef96054-ef0b-479a-86c6-e500b9e3e627","name":"Add Bar To Draft Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/AddBarToMobile/?connectionId=<connection_id>&tariffLevelOptionId=<tariff_level_opton_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"d701e691-9bd0-4c17-9907-ce00ba269ecf"},{"name":"Add Bundle To Draft Order","id":"358bf991-e1e6-474b-ad30-e96e11584465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["AddBundleToMobile",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"connectionId","value":"<contract_ids>"},{"key":"tariffOptionId","value":"<tariff_option_id>"}],"variable":[]}},"response":[{"id":"9ebc2f8d-4e52-4527-bffe-0016e948770b","name":"Add Bundle To Draft Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/AddBundleToMobile/?connectionId=<contract_ids>&tariffOptionId=<tariff_option_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"358bf991-e1e6-474b-ad30-e96e11584465"},{"name":"Add Mobile To Order","id":"cd078106-1017-4f4d-aea5-f02baa582702","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[],"variable":[]}},"response":[{"id":"eccf0597-e8ef-47b1-ab05-6be4c50e2c2d","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://abzorbapi.click2sign.co.uk:8074/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":"cd078106-1017-4f4d-aea5-f02baa582702"},{"name":"Create Order","id":"982b7967-b5dc-4ccb-97ad-3de34cdee8db","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"3adcf43c-e135-42bc-bb45-9b6f68dd47f5","name":"Create Order","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/CreateOrder/?customerId=<customer_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"982b7967-b5dc-4ccb-97ad-3de34cdee8db"},{"name":"Monitor Order Status","id":"ced94b71-daee-447d-9bd8-d08e5fed0a89","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"f957a22e-d408-422f-9509-349bf8832e87","name":"Monitor Order Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/MonitorOrder/?orderId=<order_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"ced94b71-daee-447d-9bd8-d08e5fed0a89"},{"name":"Get Order Details","id":"25399231-76ec-4d04-9da4-dc620b26956d","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"d435c408-90fa-4a64-8c16-8ef9110ae7c9","name":"Get Order Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/GetOrderDetails/?orderId=<order_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"25399231-76ec-4d04-9da4-dc620b26956d"},{"name":"Get Order Details for Customer","id":"8dfe6899-a2ec-46ec-902a-0da18b4617db","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"99bb58da-24dd-4289-9318-b18a78818f13","name":"Get Order Details for Customer","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/GetOrdersForCustomer/?customerId=<customer_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"8dfe6899-a2ec-46ec-902a-0da18b4617db"},{"name":"Return Order to Draft","id":"b11f0016-6ddd-4c76-9d2b-6eafa827f5fb","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"a849589a-ae29-4bf9-90f7-421dada50fd0","name":"Return Order to Draft","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/ReturnOrderToDraft/?orderId=<order_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"b11f0016-6ddd-4c76-9d2b-6eafa827f5fb"},{"name":"Reserve CLI","id":"88246b84-bb00-4f11-b616-e4344b2b29d1","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"cli","value":"<cli>"}],"variable":[]}},"response":[{"id":"a486bcf5-029e-430b-aada-fc4bb4ce1070","name":"Reserve CLI","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/ReserveCLI?cli=<cli>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"88246b84-bb00-4f11-b616-e4344b2b29d1"},{"name":"Remove Mobile From Order","id":"ecd25f19-39d7-4af1-a03d-3c2e0c57ba18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"https://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["RemoveMobileFromOrder",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"orderId","value":"<order_id>"},{"key":"connectionId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"0cdf4c84-2949-4231-85ef-51668f94f50b","name":"Remove Mobile From Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/RemoveMobileFromOrder/?orderId=<order_id>&connectionId=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"ecd25f19-39d7-4af1-a03d-3c2e0c57ba18"},{"name":"Remove Bundle From Draft Order","id":"b2e2b1b3-809a-402f-85fa-0f58fc8e8719","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["RemoveBundleFromMobile",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"connectionId","value":"<contract_ids>"},{"key":"tariffOptionId","value":"<tariff_option_id>"}],"variable":[]}},"response":[{"id":"8a277866-cb73-472d-b586-408c4b3d6c54","name":"Remove Bundle From Draft Order","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/RemoveBundleFromMobile/?connectionId=<contract_ids>&tariffOptionId=<tariff_option_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"b2e2b1b3-809a-402f-85fa-0f58fc8e8719"},{"name":"Remove Bar From Mobile Order","id":"b51293a9-204e-49f0-b836-491f84589c75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Basic YXdhaXMuaHVzc2FpbkBhYnpvcmIuY28udWs6cGFzc3dvcmQ="},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["RemoveBarFromMobileOrder",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"connectionId","value":"<connection_id>"},{"key":"tariffLevelOptionId","value":"<tariff_level_opton_id>"}],"variable":[]}},"response":[{"id":"f460ef20-83ff-40ac-a8a3-8a555c53d71d","name":"Remove Bar From Mobile Order","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Basic YXdhaXMuaHVzc2FpbkBhYnpvcmIuY28udWs6cGFzc3dvcmQ="},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Order/RemoveBarFromMobileOrder/?ConnectionID=<contract_ids>&TariffLevelOptionID=<tariff_level_opton_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"b51293a9-204e-49f0-b836-491f84589c75"},{"name":"Submit Order","id":"3389b9ab-3fb4-4df1-9544-3063d03956e8","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://abzorbapi.click2sign.co.uk:8074/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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["SubmitOrder",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Order"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"915eb75e-c507-4271-bfed-c82dc848c6ad","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://abzorbapi.click2sign.co.uk:8074/api/Order/SubmitOrder/?orderId=<order_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"3389b9ab-3fb4-4df1-9544-3063d03956e8"}],"id":"822f2234-fe47-45eb-a26f-cf7639456d41","description":"<p>This subfolder contains the primary API calls for the <code>/api/order</code>endpoint.</p>\n","_postman_id":"822f2234-fe47-45eb-a26f-cf7639456d41","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"528e185c-8124-479e-9ca5-a1103540a3df","description":"<p>The <code>/order</code>endpoint allows you add, remove and view bars against mobile connections.</p>\n","_postman_id":"528e185c-8124-479e-9ca5-a1103540a3df","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"PACs Controller","item":[{"name":"Appendix","item":[{"name":"Calculate CLI Buyout Cost","id":"df16052e-f3be-4322-877e-8476a54bfbdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/pacs/CalculateCLIBuyOut","description":"<h2 id=\"calculate-cli-buyout-cost\">Calculate CLI Buyout Cost</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/CalculateCLIBuyOut/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns the buyout cost for a CLI</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 list of CLIs to process</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"contractId\":123456,\n      \"disconnectionDate\":\"2026-03-09\"\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  \"ContractId\": 123456,\n  \"BuyoutCost\": 50.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>ContractId</td>\n<td>long</td>\n<td>Unique ID of a connection</td>\n</tr>\n<tr>\n<td>BuyoutCost</td>\n<td>double</td>\n<td>The buyout cost for the connection</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["CalculateCLIBuyOut"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/pacs"],"query":[],"variable":[]}},"response":[{"id":"dd7f6a77-0c6b-4c9b-bad3-7380679d9006","name":"Calculate CLI Buyout Cost","originalRequest":{"method":"POST","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/pacs/CalculateCLIBuyOut"},"_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      \"ContractId\":123456,\r\n      \"BuyoutCost\":50.00\r\n   }\r\n]"}],"_postman_id":"df16052e-f3be-4322-877e-8476a54bfbdc"},{"name":"Calculate CLI Reseller Buyout Cost","id":"fc266469-903d-46d8-b668-b8a9c8a8262d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/pacs/CalculateCLIResellerBuyOut","description":"<h2 id=\"calculate-cli-reseller-buyout-cost\">Calculate CLI Reseller Buyout Cost</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/CalculateCLIResellerBuyOut/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint returns the Reseller buyout cost for a CLI</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 list of CLIs to process</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n   {\n      \"contractId\":123456,\n      \"disconnectionDate\":\"2026-03-09\"\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   {\n      \"ContractId\":123456,\n      \"BuyoutCost\":50.00\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>ContractId</td>\n<td>long</td>\n<td>Unique ID of a connection</td>\n</tr>\n<tr>\n<td>BuyoutCost</td>\n<td>double</td>\n<td>The Reseller buyout cost for the connection</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["CalculateCLIResellerBuyOut"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/pacs"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc266469-903d-46d8-b668-b8a9c8a8262d"},{"name":"Get PAC Request Types","event":[{"listen":"test","script":{"id":"04b7a7f1-8de7-49fd-b098-915abb237420","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f58fe85c-7086-4f8d-ac16-1ead3288a963","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://abzorbapi.click2sign.co.uk:8074/api/pacs/GetPACRequestTypes","description":"<h1 id=\"get-pac-request-types\">Get PAC Request Types</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetPACRequestTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of PAC Request 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        \"RequestTypeID\": 1,\n        \"Description\": \"PAC\"\n    },\n    {\n        \"RequestTypeID\": 2,\n        \"Description\": \"STAC\"\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetPACRequestTypes"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/pacs"],"query":[],"variable":[]}},"response":[{"id":"12265e5b-96fa-4e6c-9b3b-3ca3838b030f","name":"Get PAC Request Types","originalRequest":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/pacs/GetPACRequestTypes"},"_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        \"RequestTypeID\": 1,\r\n        \"Description\": \"PAC\"\r\n    },\r\n    {\r\n        \"RequestTypeID\": 2,\r\n        \"Description\": \"STAC\"\r\n    },\r\n    {\r\n        \"RequestTypeID\": 3,\r\n        \"Description\": \"INFO\"\r\n    }\r\n]\r\n"}],"_postman_id":"f58fe85c-7086-4f8d-ac16-1ead3288a963"},{"name":"Get PAC Request Statuses","event":[{"listen":"test","script":{"id":"04b7a7f1-8de7-49fd-b098-915abb237420","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"6b6ac8b3-bd98-4dee-ba3c-4a183fd025d2","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://abzorbapi.click2sign.co.uk:8074/api/pacs/GetPACRequestStatuses","description":"<h1 id=\"get-pac-request-statuses\">Get PAC Request Statuses</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetPACRequestStatuses/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of PAC Request 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        \"PACRequestStatusID\": 1,\n        \"Description\": \"Pending\"\n    },\n    {\n        \"PACRequestStatusID\": 2,\n        \"Description\": \"Processed\"\n    },\n    {\n        \"PACRequestStatusID\": 3,\n        \"Description\": \"Cancelled\"\n    },\n    {\n        \"PACRequestStatusID\": 4,\n        \"Description\": \"PAC Already Exists\"\n    },\n    {\n        \"PACRequestStatusID\": 5,\n        \"Description\": \"Paused\"\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetPACRequestStatuses"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/pacs"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b6ac8b3-bd98-4dee-ba3c-4a183fd025d2"},{"name":"Get PAC Request Methods","event":[{"listen":"test","script":{"id":"04b7a7f1-8de7-49fd-b098-915abb237420","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"c1aa5753-60ff-423a-984a-670cfe23ee0c","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://abzorbapi.click2sign.co.uk:8074/api/pacs/GetPACRequestMethods","description":"<h1 id=\"get-pac-request-methods\">Get PAC Request Methods</h1>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetPACRequestMethods/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This API endpoint retrieves a list of PAC Request methods</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        \"RequestMethodID\": 1,\n        \"Description\": \"SMS\"\n    },\n    {\n        \"RequestMethodID\": 2,\n        \"Description\": \"Web Portal\"\n    },\n    {\n        \"RequestMethodID\": 3,\n        \"Description\": \"API\"\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["GetPACRequestMethods"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/pacs"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1aa5753-60ff-423a-984a-670cfe23ee0c"}],"id":"18ab3896-e8f8-400e-b85b-e9c2a8db52ae","description":"<p>This subfolder hosts supplementary API calls that support or extend the functionality of the main <code>/pacs</code> endpoints.</p>\n","_postman_id":"18ab3896-e8f8-400e-b85b-e9c2a8db52ae","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get All PAC Requests","id":"90f07622-4313-4a31-a123-9f3a88db2690","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":"Content-Type","value":"application/json"}],"url":"https://abzorbapi.click2sign.co.uk:8074/api//pacs/GetAllPACRequests","description":"<h2 id=\"get-all-pac-requests\">Get All PAC Requests</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetAllPACRequests/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all PAC requests 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      \"PACRequestID\": 1,\n      \"ResellerID\": 123456,\n      \"CustomerID\": 123456,\n      \"CompanyName\":\"Test Customer\",\n      \"RequestTypeID\":1,\n      \"TicketID\": 123456,\n      \"ActionDate\":\"2026-06-09T09:11:38.49\",\n      \"TerminationFeeTotal\": 0.0000,\n      \"ResellerBuyOutTotal\": 0.0000,\n      \"CustomerBuyOutToal\":0.0,\n      \"CreatedTime\":\"2026-06-09T09:11:38.49\",\n      \"CreatedBy\":\"test@abzorb.co.uk\",\n      \"UpdatedTime\":\"2026-06-10T10:11:38.507\",\n      \"UpdatedBy\":\"test@abzorb.co.uk\",\n      \"PACRequestStatusID\":2,\n      \"PACRequestMethodID\":2,\n      \"PACCode\":\"VOC123456\",\n      \"PACExpiryDate\":\"2026-07-10T00:00:00\"\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>PACRequestID</td>\n<td>long</td>\n<td>Unique ID of the PAC Request</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>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>RequestTypeID</td>\n<td>long</td>\n<td>The PAC request type</td>\n</tr>\n<tr>\n<td>TicketID</td>\n<td>long</td>\n<td>Unique ID of the ticket associated to the request</td>\n</tr>\n<tr>\n<td>ActionDate</td>\n<td>datetime</td>\n<td>Request process date</td>\n</tr>\n<tr>\n<td>TerminationFeeTotal</td>\n<td>decimal</td>\n<td>The termination fee total</td>\n</tr>\n<tr>\n<td>ResellerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Reseller buyout total</td>\n</tr>\n<tr>\n<td>CustomerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Customer buyout total</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who submitted request</td>\n</tr>\n<tr>\n<td>UpdatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was updated</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who updated request</td>\n</tr>\n<tr>\n<td>PACRequestStatusID</td>\n<td>long</td>\n<td>The ID for the status of the PAC</td>\n</tr>\n<tr>\n<td>PACRequestMethodID</td>\n<td>long</td>\n<td>The method through which the request was submitted i.e. SMS, Abzorb Portal, or API</td>\n</tr>\n<tr>\n<td>PACCode</td>\n<td>string</td>\n<td>The PAC associated to the request</td>\n</tr>\n<tr>\n<td>PACExpiryDate</td>\n<td>datetime</td>\n<td>The expiry date of the PAC</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["pacs","GetAllPACRequests"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/"],"query":[],"variable":[]}},"response":[],"_postman_id":"90f07622-4313-4a31-a123-9f3a88db2690"},{"name":"Get PAC Requests For Customer","id":"6e068614-ded4-41d9-9e56-958e4d3a5224","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api//pacs/GetCustomerPACRequests?customerId=<customer_id>","description":"<h2 id=\"get-customer-pac-requests\">Get Customer PAC Requests</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetCustomerPACRequests/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all PAC requests associated with 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 a company</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      \"PACRequestID\": 1,\n      \"ResellerID\": 123456,\n      \"CustomerID\": 123456,\n      \"CompanyName\":\"Test Customer\",\n      \"RequestTypeID\":1,\n      \"TicketID\": 123456,\n      \"ActionDate\":\"2026-06-09T09:11:38.49\",\n      \"TerminationFeeTotal\": 0.0000,\n      \"ResellerBuyOutTotal\": 0.0000,\n      \"CustomerBuyOutToal\":0.0,\n      \"CreatedTime\":\"2026-06-09T09:11:38.49\",\n      \"CreatedBy\":\"test@abzorb.co.uk\",\n      \"UpdatedTime\":\"2026-06-10T10:11:38.507\",\n      \"UpdatedBy\":\"test@abzorb.co.uk\",\n      \"PACRequestStatusID\":2,\n      \"PACRequestMethodID\":2,\n      \"PACCode\":\"VOC123456\",\n      \"PACExpiryDate\":\"2026-07-10T00:00:00\"\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>PACRequestID</td>\n<td>long</td>\n<td>Unique ID of the PAC Request</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>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>RequestTypeID</td>\n<td>long</td>\n<td>The PAC request type</td>\n</tr>\n<tr>\n<td>TicketID</td>\n<td>long</td>\n<td>Unique ID of the ticket associated to the request</td>\n</tr>\n<tr>\n<td>ActionDate</td>\n<td>datetime</td>\n<td>Request process date</td>\n</tr>\n<tr>\n<td>TerminationFeeTotal</td>\n<td>decimal</td>\n<td>The termination fee total</td>\n</tr>\n<tr>\n<td>ResellerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Reseller buyout total</td>\n</tr>\n<tr>\n<td>CustomerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Customer buyout total</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who submitted request</td>\n</tr>\n<tr>\n<td>UpdatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was updated</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who updated request</td>\n</tr>\n<tr>\n<td>PACRequestStatusID</td>\n<td>long</td>\n<td>The ID for the status of the PAC</td>\n</tr>\n<tr>\n<td>PACRequestMethodID</td>\n<td>long</td>\n<td>The method through which the request was submitted i.e. SMS, Abzorb Portal, or API</td>\n</tr>\n<tr>\n<td>PACCode</td>\n<td>string</td>\n<td>The PAC associated to the request</td>\n</tr>\n<tr>\n<td>PACExpiryDate</td>\n<td>datetime</td>\n<td>The expiry date of the PAC</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["pacs","GetCustomerPACRequests"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[{"id":"38a42016-741c-42fc-a1f6-bbffe8d31d23","name":"Get PAC Requests For Customer","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api//pacs/GetCustomerPACRequests?customerId=<customer_id>","host":["https://abzorbapi.click2sign.co.uk:8074/api/"],"path":["pacs","GetCustomerPACRequests"],"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      \"PACRequestID\": 1,\r\n      \"ResellerID\": 123456,\r\n      \"CustomerID\": 123456,\r\n      \"CompanyName\":\"Test Customer\",\r\n      \"RequestTypeID\":1,\r\n      \"TicketID\": 123456,\r\n      \"ActionDate\":\"2026-06-09T09:11:38.49\",\r\n      \"TerminationFeeTotal\": 0.0000,\r\n      \"ResellerBuyOutTotal\": 0.0000,\r\n      \"CustomerBuyOutToal\":0.0,\r\n      \"CreatedTime\":\"2026-06-09T09:11:38.49\",\r\n      \"CreatedBy\":\"test@abzorb.co.uk\",\r\n      \"UpdatedTime\":\"2026-06-10T10:11:38.507\",\r\n      \"UpdatedBy\":\"test@abzorb.co.uk\",\r\n      \"PACRequestStatusID\":2,\r\n      \"PACRequestMethodID\":2,\r\n      \"PACCode\":\"VOC123456\",\r\n      \"PACExpiryDate\":\"2026-07-10T00:00:00\"\r\n   }\r\n]\r\n"}],"_postman_id":"6e068614-ded4-41d9-9e56-958e4d3a5224"},{"name":"Get PAC Request Details","id":"8d1eb192-68c0-45d2-aed6-6c81bec27dc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api//pacs/GetPACRequestDetails?pacRequestId=","description":"<h2 id=\"get-pac-request-details\">Get PAC Request Details</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetPACRequestDetails/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns details for a specific PAC request</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>pacRequestId</td>\n<td>long</td>\n<td>Unique ID of a PAC 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   \"PACRequestID\":1,\n   \"ResellerID\":123456,\n   \"CustomerID\":123456,\n   \"CompanyName\":\"Test Customer\",\n   \"RequestTypeID\":1,\n   \"TicketID\":123456,\n   \"ActionDate\":\"2026-06-09T09:11:38.49\",\n   \"TerminationFeeTotal\":0.0000,\n   \"ResellerBuyOutTotal\":0.0000,\n   \"CustomerBuyOutToal\":0.0,\n   \"CreatedTime\":\"2026-06-09T09:11:38.49\",\n   \"CreatedBy\":\"test@abzorb.co.uk\",\n   \"UpdatedTime\":\"2026-06-10T10:11:38.507\",\n   \"UpdatedBy\":\"test@abzorb.co.uk\",\n   \"PACRequestStatusID\":2,\n   \"PACRequestMethodID\":2,\n   \"PACCode\":\"VOC123456\",\n   \"PACExpiryDate\":\"2026-07-10T00:00: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>PACRequestID</td>\n<td>long</td>\n<td>Unique ID of the PAC Request</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>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>RequestTypeID</td>\n<td>long</td>\n<td>The PAC request type</td>\n</tr>\n<tr>\n<td>TicketID</td>\n<td>long</td>\n<td>Unique ID of the ticket associated to the request</td>\n</tr>\n<tr>\n<td>ActionDate</td>\n<td>datetime</td>\n<td>Request process date</td>\n</tr>\n<tr>\n<td>TerminationFeeTotal</td>\n<td>decimal</td>\n<td>The termination fee total</td>\n</tr>\n<tr>\n<td>ResellerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Reseller buyout total</td>\n</tr>\n<tr>\n<td>CustomerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Customer buyout total</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who submitted request</td>\n</tr>\n<tr>\n<td>UpdatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was updated</td>\n</tr>\n<tr>\n<td>UpdatedBy</td>\n<td>string</td>\n<td>User who updated request</td>\n</tr>\n<tr>\n<td>PACRequestStatusID</td>\n<td>long</td>\n<td>The ID for the status of the PAC</td>\n</tr>\n<tr>\n<td>PACRequestMethodID</td>\n<td>long</td>\n<td>The method through which the request was submitted i.e. SMS, Abzorb Portal, or API</td>\n</tr>\n<tr>\n<td>PACCode</td>\n<td>string</td>\n<td>The PAC associated to the request</td>\n</tr>\n<tr>\n<td>PACExpiryDate</td>\n<td>datetime</td>\n<td>The expiry date of the PAC</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["pacs","GetPACRequestDetails"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/"],"query":[{"key":"pacRequestId","value":""}],"variable":[]}},"response":[],"_postman_id":"8d1eb192-68c0-45d2-aed6-6c81bec27dc7"},{"name":"Get PAC Request CLIs","id":"db02cc52-fefd-4d2a-9fc4-48c9ab6ddf79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api//pacs/GetPACRequestClis?pacRequestId=","description":"<h2 id=\"get-pac-request-clis\">Get PAC Request CLIs</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/pacs/GetPACRequestCLIs/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns CLI details for a specific PAC request</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>pacRequestId</td>\n<td>long</td>\n<td>Unique ID of a PAC 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  {\n    \"ID\": 0,\n    \"PACRequestID\": 0,\n    \"ResellerID\": 0,\n    \"CustomerID\": 0,\n    \"CompanyName\": \"\",\n    \"ContractID\": 0,\n    \"CLI\": \"\",\n    \"Term\": null,\n    \"EndDate\": \"0001-01-01T00:00:00\",\n    \"TerminationFee\": null,\n    \"ResellerBuyOutCost\": null,\n    \"CustomerBuyOutCost\": null,\n    \"CreatedTime\": \"0001-01-01T00:00:00\",\n    \"CreatedBy\": \"\",\n    \"UpdatedTime\": \"0001-01-01T00:00:00\",\n    \"UpdatedBy\": \"\",\n    \"IsCancelled\": false,\n    \"TicketID\": 0,\n    \"PACCode\": \"\",\n    \"PACRequestStatusID\": 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>ID</td>\n<td>long</td>\n<td>Unique ID for CLI associated to request</td>\n</tr>\n<tr>\n<td>PACRequestID</td>\n<td>long</td>\n<td>Unique ID of PAC request</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>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractID</td>\n<td>long</td>\n<td>Unique ID of 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>TicketID</td>\n<td>long</td>\n<td>Unique ID of the ticket associated to the request</td>\n</tr>\n<tr>\n<td>TerminationFee</td>\n<td>decimal</td>\n<td>The termination fee total</td>\n</tr>\n<tr>\n<td>ResellerBuyOutCost</td>\n<td>decimal</td>\n<td>The Reseller buyout total</td>\n</tr>\n<tr>\n<td>CustomerBuyOutCost</td>\n<td>decimal</td>\n<td>The Customer buyout total</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who submitted request</td>\n</tr>\n<tr>\n<td>UpdatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was updated</td>\n</tr>\n<tr>\n<td>UpdatedBy</td>\n<td>string</td>\n<td>User who updated request</td>\n</tr>\n<tr>\n<td>IsCancelled</td>\n<td>bool</td>\n<td>Whether the request has been cancelled</td>\n</tr>\n<tr>\n<td>TicketID</td>\n<td>long</td>\n<td>Unique ID of ticket</td>\n</tr>\n<tr>\n<td>PACCode</td>\n<td>string</td>\n<td>The PAC associated to the request</td>\n</tr>\n<tr>\n<td>PACRequestStatusID</td>\n<td>long</td>\n<td>The ID for the status of the PAC</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["pacs","GetPACRequestClis"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/"],"query":[{"key":"pacRequestId","value":""}],"variable":[]}},"response":[],"_postman_id":"db02cc52-fefd-4d2a-9fc4-48c9ab6ddf79"},{"name":"Create PAC Request","id":"2a4bc4fe-7b41-450b-97da-557433a9fda4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/pacs/CreatePACRequest","description":"<h2 id=\"create-pac-request\">Create PAC Request</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/pacs/CreatePACRequest/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoint allows for a PAC or STAC Request to be created. The request will automatically be associated to the Reseller linked to the API 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-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 the following mode</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"CustomerID\": 123568,\n  \"RequestTypeID\": 1, \n  \"CLIModel\": [\n    {\n      \"ContractID\": 123456,\n      \"TerminationFee\": 0.00,\n      \"CustomerBuyOutCost\": 0.00\n    }\n  ]\n}\n\n</code></pre>\n<h5 id=\"request-body-attributes\">Request Body Attributes</h5>\n<h5 id=\"parent-model\"><strong>Parent Model</strong></h5>\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 Customer</td>\n</tr>\n<tr>\n<td>RequestTypeID</td>\n<td>long</td>\n<td>PAC = 1 or STAC = 2</td>\n</tr>\n<tr>\n<td>CLIModel</td>\n<td>array</td>\n<td>Collection of CLI records</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"climodel-object\"><strong>CLIModel Object</strong></h5>\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>ContractID</td>\n<td>long</td>\n<td>Unique ID of mobile connection</td>\n</tr>\n<tr>\n<td>TerminationFee</td>\n<td>decimal</td>\n<td>Termination fee value</td>\n</tr>\n<tr>\n<td>CustomerBuyOutCost</td>\n<td>decimal</td>\n<td>Customer buy out value</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   \"PACRequestID\":1,\n   \"ResellerID\":123456,\n   \"CustomerID\":123456,\n   \"CompanyName\":\"Test Customer\",\n   \"RequestTypeID\":1,\n   \"TicketID\":123456,\n   \"ActionDate\":\"2026-06-09T09:11:38.49\",\n   \"TerminationFeeTotal\":0.0000,\n   \"ResellerBuyOutTotal\":0.0000,\n   \"CustomerBuyOutToal\":0.0,\n   \"CreatedTime\":\"2026-06-09T09:11:38.49\",\n   \"CreatedBy\":\"test@abzorb.co.uk\",\n   \"UpdatedTime\":\"2026-06-10T10:11:38.507\",\n   \"UpdatedBy\":\"test@abzorb.co.uk\",\n   \"PACRequestStatusID\":2,\n   \"PACRequestMethodID\":2,\n   \"PACCode\":\"VOC123456\",\n   \"PACExpiryDate\":\"2026-07-10T00:00: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>PACRequestID</td>\n<td>long</td>\n<td>Unique ID of the PAC Request</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>CustomerID</td>\n<td>long</td>\n<td>Unique ID of the Customer</td>\n</tr>\n<tr>\n<td>RequestTypeID</td>\n<td>long</td>\n<td>The PAC request type</td>\n</tr>\n<tr>\n<td>TicketID</td>\n<td>long</td>\n<td>Unique ID of the ticket associated to the request</td>\n</tr>\n<tr>\n<td>ActionDate</td>\n<td>datetime</td>\n<td>Request process date</td>\n</tr>\n<tr>\n<td>TerminationFeeTotal</td>\n<td>decimal</td>\n<td>The termination fee total</td>\n</tr>\n<tr>\n<td>ResellerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Reseller buyout total</td>\n</tr>\n<tr>\n<td>CustomerBuyOutTotal</td>\n<td>decimal</td>\n<td>The Customer buyout total</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was created</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td>string</td>\n<td>User who submitted request</td>\n</tr>\n<tr>\n<td>UpdatedTime</td>\n<td>datetime</td>\n<td>The date/time the request was updated</td>\n</tr>\n<tr>\n<td>UpdatedBy</td>\n<td>string</td>\n<td>User who updated request</td>\n</tr>\n<tr>\n<td>PACRequestStatusID</td>\n<td>long</td>\n<td>The ID for the status of the PAC</td>\n</tr>\n<tr>\n<td>PACRequestMethodID</td>\n<td>long</td>\n<td>The method through which the request was submitted i.e. SMS, Abzorb Portal, or API</td>\n</tr>\n<tr>\n<td>PACCode</td>\n<td>string</td>\n<td>The PAC associated to the request</td>\n</tr>\n<tr>\n<td>PACExpiryDate</td>\n<td>datetime</td>\n<td>The expiry date of the PAC</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["CreatePACRequest"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/pacs"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a4bc4fe-7b41-450b-97da-557433a9fda4"}],"id":"f2d8e4f3-55b6-4afb-9526-21591ba1f2ea","description":"<p>This subfolder contains the primary API calls for the <code>/api/pacs</code>endpoint.</p>\n","_postman_id":"f2d8e4f3-55b6-4afb-9526-21591ba1f2ea","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"2f53d62b-a8f5-4b68-9c1e-646927a130c3","description":"<p>The <code>/pacs</code> allows you to poll mobile switching requests</p>\n","_postman_id":"2f53d62b-a8f5-4b68-9c1e-646927a130c3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"SIM Management","item":[{"name":"Appendix","item":[{"name":"Validate SIM","id":"d2357ede-36b2-4cd0-8ca5-3979c9d47600","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/sim"],"query":[{"key":"sim","value":"<sim>"},{"key":"cli","value":"<cli>"}],"variable":[]}},"response":[{"id":"340b54b0-b529-4b5e-a3d3-1fdb8449df04","name":"Validate SIM","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/sim/CheckSIM?SIM=<sim>&CLI=<cli>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"d2357ede-36b2-4cd0-8ca5-3979c9d47600"}],"id":"e99d8615-871b-445b-8e7f-8e37981433ef","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":"e99d8615-871b-445b-8e7f-8e37981433ef","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Create eSIM Request","id":"5ee76b1a-c852-4cc8-bae7-f93e0d209ac3","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/sim"],"query":[{"key":"contractId","value":"<contract_ids>"},{"key":"cli","value":"<cli>"},{"key":"esimRecipientEmail","value":"\"\""}],"variable":[]}},"response":[{"id":"03054b1f-fec3-4554-9b6d-d9e300276197","name":"Create eSIM Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/sim/CreateEsimRequest/?ContractID=<contract_ids>&Mobile_No=<cli>&EsimRecipientEmail=\"\"","host":["https://abzorbapi.click2sign.co.uk:8074/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":"5ee76b1a-c852-4cc8-bae7-f93e0d209ac3"},{"name":"SIM Change","id":"3bb95d94-5e6e-41ef-8f2f-7ebdbb33897a","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://abzorbapi.click2sign.co.uk:8074/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>`POST /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://abzorbapi.click2sign.co.uk:8074/api/sim"],"query":[{"key":"contractId","value":"<contract_ids>"},{"key":"cli","value":"<cli>"},{"key":"simNo","value":"<sim>"}],"variable":[]}},"response":[{"id":"1494317b-7404-4c14-8b47-54a0f10c09d2","name":"SIM Change","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/sim/ChangeSIM/?ContractID=<contract_ids>&Mobile_No=<cli>&SimNo=<sim>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"3bb95d94-5e6e-41ef-8f2f-7ebdbb33897a"}],"id":"e63c8004-7258-43a1-875e-2fcfd951d7d4","description":"<p>This subfolder contains the primary API calls for the <code>/api/sim</code> endpoint.</p>\n","_postman_id":"e63c8004-7258-43a1-875e-2fcfd951d7d4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"f332dc4b-b337-459d-882f-e5219db77359","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":"f332dc4b-b337-459d-882f-e5219db77359","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Tariff Management","item":[{"name":"Appendix","item":[{"name":"Get All Tariffs","id":"4f39cc62-84f9-42d7-b156-62e809e3cfbf","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://abzorbapi.click2sign.co.uk:8074/api/Tariff/GetTariffs","description":"<h2 id=\"get-all-tariffs\">Get All Tariffs</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/tariff/GetTariffs/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This 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><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    {\n        \"TariffID\": \"7740\",\n        \"TariffName\": \"abz - One Voice and Data - BCH\",\n        \"RetailCost\": 11.1000\n    },\n    {\n        \"TariffID\": \"9447\",\n        \"TariffName\": \"abz B1 One Business 6GB (2021)\",\n        \"RetailCost\": 18.7400\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>TariffID</td>\n<td>long</td>\n<td>The unique ID of the tariff</td>\n</tr>\n<tr>\n<td>TariffName</td>\n<td>string</td>\n<td>The name of the tariff</td>\n</tr>\n<tr>\n<td>RetailCost</td>\n<td>decimal</td>\n<td>The price of the tariff</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetTariffs"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Tariff"],"query":[],"variable":[]}},"response":[{"id":"f3141a75-8bca-4f1d-98ab-6bbb1b32a7ac","name":"Get Tariffs","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}Tariff/GetTariffs"},"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:57:14 GMT"},{"key":"Content-Length","value":"33002"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"TariffID\": \"7740\",\n        \"TariffName\": \"abz - One Voice and Data - BCH\",\n        \"RetailCost\": 11.1\n    },\n    {\n        \"TariffID\": \"9447\",\n        \"TariffName\": \"abz B1 One Business 6GB (2021)\",\n        \"RetailCost\": 18.74\n    },\n    {\n        \"TariffID\": \"9579\",\n        \"TariffName\": \"abz One Business 100GB (12m) (2024)\",\n        \"RetailCost\": 24.5\n    },\n    {\n        \"TariffID\": \"7756\",\n        \"TariffName\": \"abz One Business 100GB (2021) - Catapult\",\n        \"RetailCost\": 38.43\n    },\n    {\n        \"TariffID\": \"9457\",\n        \"TariffName\": \"abz One Business 100GB (2023)\",\n        \"RetailCost\": 43.69\n    },\n    {\n        \"TariffID\": \"9580\",\n        \"TariffName\": \"abz One Business 100GB (24m) (2024)\",\n        \"RetailCost\": 22.5\n    },\n    {\n        \"TariffID\": \"9578\",\n        \"TariffName\": \"abz One Business 100GB (30day) (2024)\",\n        \"RetailCost\": 26.5\n    },\n    {\n        \"TariffID\": \"9570\",\n        \"TariffName\": \"abz One Business 10GB (12m) (2024)\",\n        \"RetailCost\": 15.5\n    },\n    {\n        \"TariffID\": \"9455\",\n        \"TariffName\": \"abz One Business 10GB (2023)\",\n        \"RetailCost\": 24.81\n    },\n    {\n        \"TariffID\": \"9571\",\n        \"TariffName\": \"abz One Business 10GB (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\": \"7362\",\n        \"TariffName\": \"abz One Business 12GB (2021)\",\n        \"RetailCost\": 25.91\n    },\n    {\n        \"TariffID\": \"7746\",\n        \"TariffName\": \"abz One Business 12GB (2021) - Catapult\",\n        \"RetailCost\": 15.55\n    },\n    {\n        \"TariffID\": \"9453\",\n        \"TariffName\": \"abz One Business 1GB (2023)\",\n        \"RetailCost\": 17.8\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\": \"9572\",\n        \"TariffName\": \"abz One Business 20GB (30day) (2024)\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"7363\",\n        \"TariffName\": \"abz One Business 24GB (2021)\",\n        \"RetailCost\": 33.31\n    },\n    {\n        \"TariffID\": \"7747\",\n        \"TariffName\": \"abz One Business 24GB (2021) - Catapult\",\n        \"RetailCost\": 18.53\n    },\n    {\n        \"TariffID\": \"7360\",\n        \"TariffName\": \"abz One Business 2GB (2021)\",\n        \"RetailCost\": 19.74\n    },\n    {\n        \"TariffID\": \"7744\",\n        \"TariffName\": \"abz One Business 2GB (2021)  - Catapult\",\n        \"RetailCost\": 10.98\n    },\n    {\n        \"TariffID\": \"9456\",\n        \"TariffName\": \"abz One Business 30GB (2023)\",\n        \"RetailCost\": 31.29\n    },\n    {\n        \"TariffID\": \"9454\",\n        \"TariffName\": \"abz One Business 3GB (2023)\",\n        \"RetailCost\": 19.96\n    },\n    {\n        \"TariffID\": \"9576\",\n        \"TariffName\": \"abz One Business 50GB (12m) (2024)\",\n        \"RetailCost\": 22.5\n    },\n    {\n        \"TariffID\": \"7364\",\n        \"TariffName\": \"abz One Business 50GB (2021)\",\n        \"RetailCost\": 43.2\n    },\n    {\n        \"TariffID\": \"7748\",\n        \"TariffName\": \"abz One Business 50GB (2021) - Catapult\",\n        \"RetailCost\": 25.92\n    },\n    {\n        \"TariffID\": \"9577\",\n        \"TariffName\": \"abz One Business 50GB (24m) (2024)\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9575\",\n        \"TariffName\": \"abz One Business 50GB (30day) (2024)\",\n        \"RetailCost\": 24.5\n    },\n    {\n        \"TariffID\": \"7361\",\n        \"TariffName\": \"abz One Business 6GB (2021)\",\n        \"RetailCost\": 23.44\n    },\n    {\n        \"TariffID\": \"7745\",\n        \"TariffName\": \"abz One Business 6GB (2021) - Catapult\",\n        \"RetailCost\": 13.04\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\": \"9581\",\n        \"TariffName\": \"abz One Business Unlimited (30day) (2024)\",\n        \"RetailCost\": 32.5\n    },\n    {\n        \"TariffID\": \"7359\",\n        \"TariffName\": \"abz One Business Voice Only (2021)\",\n        \"RetailCost\": 18.51\n    },\n    {\n        \"TariffID\": \"7743\",\n        \"TariffName\": \"abz One Business Voice Only (2021) - Catapult\",\n        \"RetailCost\": 10.29\n    },\n    {\n        \"TariffID\": \"9452\",\n        \"TariffName\": \"abz One Business Voice Only (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"7368\",\n        \"TariffName\": \"abz One Data 12GB (2021)\",\n        \"RetailCost\": 23.44\n    },\n    {\n        \"TariffID\": \"7751\",\n        \"TariffName\": \"abz One Data 12GB (2021) - Catapult\",\n        \"RetailCost\": 13.04\n    },\n    {\n        \"TariffID\": \"7369\",\n        \"TariffName\": \"abz One Data 24GB (2021)\",\n        \"RetailCost\": 30.85\n    },\n    {\n        \"TariffID\": \"7752\",\n        \"TariffName\": \"abz One Data 24GB (2021) - Catapult\",\n        \"RetailCost\": 17.16\n    },\n    {\n        \"TariffID\": \"7365\",\n        \"TariffName\": \"abz One Data 2GB (2021)\",\n        \"RetailCost\": 17.27\n    },\n    {\n        \"TariffID\": \"7749\",\n        \"TariffName\": \"abz One Data 2GB (2021) - Catapult\",\n        \"RetailCost\": 9.6\n    },\n    {\n        \"TariffID\": \"7370\",\n        \"TariffName\": \"abz One Data 50GB (2021)\",\n        \"RetailCost\": 40.73\n    },\n    {\n        \"TariffID\": \"7753\",\n        \"TariffName\": \"abz One Data 50GB (2021) - Catapult\",\n        \"RetailCost\": 22.65\n    },\n    {\n        \"TariffID\": \"7366\",\n        \"TariffName\": \"abz One Data 6GB (2021)\",\n        \"RetailCost\": 20.97\n    },\n    {\n        \"TariffID\": \"7750\",\n        \"TariffName\": \"abz One Data 6GB (2021) - Catapult\",\n        \"RetailCost\": 11.66\n    },\n    {\n        \"TariffID\": \"9597\",\n        \"TariffName\": \"abz One Data Only 100GB (12m) (2024)\",\n        \"RetailCost\": 29.75\n    },\n    {\n        \"TariffID\": \"9462\",\n        \"TariffName\": \"abz One Data Only 100GB (2023)\",\n        \"RetailCost\": 33.98\n    },\n    {\n        \"TariffID\": \"9598\",\n        \"TariffName\": \"abz One Data Only 100GB (24m) (2024)\",\n        \"RetailCost\": 28\n    },\n    {\n        \"TariffID\": \"9596\",\n        \"TariffName\": \"abz One Data Only 100GB (30day) (2024)\",\n        \"RetailCost\": 31.5\n    },\n    {\n        \"TariffID\": \"9591\",\n        \"TariffName\": \"abz One Data Only 10GB (12m) (2024)\",\n        \"RetailCost\": 13.25\n    },\n    {\n        \"TariffID\": \"9460\",\n        \"TariffName\": \"abz One Data Only 10GB (2023)\",\n        \"RetailCost\": 15.1\n    },\n    {\n        \"TariffID\": \"9592\",\n        \"TariffName\": \"abz One Data Only 10GB (24m) (2024)\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9590\",\n        \"TariffName\": \"abz One Data Only 10GB (30day) (2024)\",\n        \"RetailCost\": 14\n    },\n    {\n        \"TariffID\": \"9585\",\n        \"TariffName\": \"abz One Data Only 1GB (12m) (2024)\",\n        \"RetailCost\": 7.25\n    },\n    {\n        \"TariffID\": \"9458\",\n        \"TariffName\": \"abz One Data Only 1GB (2023)\",\n        \"RetailCost\": 8.09\n    },\n    {\n        \"TariffID\": \"9586\",\n        \"TariffName\": \"abz One Data Only 1GB (24m) (2024)\",\n        \"RetailCost\": 7\n    },\n    {\n        \"TariffID\": \"9584\",\n        \"TariffName\": \"abz One Data Only 1GB (30day) (2024)\",\n        \"RetailCost\": 7.5\n    },\n    {\n        \"TariffID\": \"9594\",\n        \"TariffName\": \"abz One Data Only 30GB (12m) (2024)\",\n        \"RetailCost\": 18.75\n    },\n    {\n        \"TariffID\": \"9461\",\n        \"TariffName\": \"abz One Data Only 30GB (2023)\",\n        \"RetailCost\": 21.31\n    },\n    {\n        \"TariffID\": \"9595\",\n        \"TariffName\": \"abz One Data Only 30GB (24m) (2024)\",\n        \"RetailCost\": 17.75\n    },\n    {\n        \"TariffID\": \"9593\",\n        \"TariffName\": \"abz One Data Only 30GB (30day) (2024)\",\n        \"RetailCost\": 19.75\n    },\n    {\n        \"TariffID\": \"9588\",\n        \"TariffName\": \"abz One Data Only 3GB (12m) (2024)\",\n        \"RetailCost\": 9\n    },\n    {\n        \"TariffID\": \"9459\",\n        \"TariffName\": \"abz One Data Only 3GB (2023)\",\n        \"RetailCost\": 10.25\n    },\n    {\n        \"TariffID\": \"9589\",\n        \"TariffName\": \"abz One Data Only 3GB (24m) (2024)\",\n        \"RetailCost\": 8.5\n    },\n    {\n        \"TariffID\": \"9587\",\n        \"TariffName\": \"abz One Data Only 3GB (30day) (2024)\",\n        \"RetailCost\": 9.5\n    },\n    {\n        \"TariffID\": \"7374\",\n        \"TariffName\": \"abz One Sharer 2GB Data Only (2021)\",\n        \"RetailCost\": 17.27\n    },\n    {\n        \"TariffID\": \"7755\",\n        \"TariffName\": \"abz One Sharer 2GB Data Only (2021) - Catapult\",\n        \"RetailCost\": 9.6\n    },\n    {\n        \"TariffID\": \"7373\",\n        \"TariffName\": \"abz One Sharer 2GB Voice (2021)\",\n        \"RetailCost\": 23.44\n    },\n    {\n        \"TariffID\": \"7754\",\n        \"TariffName\": \"abz One Sharer 2GB Voice (2021) - Catapult\",\n        \"RetailCost\": 13.04\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\": \"9603\",\n        \"TariffName\": \"abz One Sharer 6GB Data Only (30day) (2024)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9601\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (12m) (2024)\",\n        \"RetailCost\": 19\n    },\n    {\n        \"TariffID\": \"9464\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (2023)\",\n        \"RetailCost\": 21.31\n    },\n    {\n        \"TariffID\": \"9602\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (24m) (2024)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9600\",\n        \"TariffName\": \"abz One Sharer 6GB Voice (30day) (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9610\",\n        \"TariffName\": \"abz One Sharer Data Only (12m) (2024)\",\n        \"RetailCost\": 8.5\n    },\n    {\n        \"TariffID\": \"7372\",\n        \"TariffName\": \"abz One Sharer Data Only (2021)\",\n        \"RetailCost\": 12.34\n    },\n    {\n        \"TariffID\": \"7739\",\n        \"TariffName\": \"abz One Sharer Data Only (2021) - BCH\",\n        \"RetailCost\": 7.4\n    },\n    {\n        \"TariffID\": \"9450\",\n        \"TariffName\": \"abz One Sharer Data Only (2023)\",\n        \"RetailCost\": 8.09\n    },\n    {\n        \"TariffID\": \"9611\",\n        \"TariffName\": \"abz One Sharer Data Only (24m) (2024)\",\n        \"RetailCost\": 7.5\n    },\n    {\n        \"TariffID\": \"9609\",\n        \"TariffName\": \"abz One Sharer Data Only (30day) (2024)\",\n        \"RetailCost\": 9.5\n    },\n    {\n        \"TariffID\": \"9607\",\n        \"TariffName\": \"abz One Sharer Voice (12m) (2024)\",\n        \"RetailCost\": 14.5\n    },\n    {\n        \"TariffID\": \"7371\",\n        \"TariffName\": \"abz One Sharer Voice (2021)\",\n        \"RetailCost\": 18.51\n    },\n    {\n        \"TariffID\": \"9449\",\n        \"TariffName\": \"abz One Sharer Voice (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9608\",\n        \"TariffName\": \"abz One Sharer Voice (24m) (2024)\",\n        \"RetailCost\": 13.5\n    },\n    {\n        \"TariffID\": \"9606\",\n        \"TariffName\": \"abz One Sharer Voice (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\": \"9451\",\n        \"TariffName\": \"abz One Unlimited Data Flex (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9568\",\n        \"TariffName\": \"abz One Unlimited Data Flex (24m) (2024)\",\n        \"RetailCost\": 13.5\n    },\n    {\n        \"TariffID\": \"9566\",\n        \"TariffName\": \"abz One Unlimited Data Flex (30day) (2024)\",\n        \"RetailCost\": 15.5\n    },\n    {\n        \"TariffID\": \"9721\",\n        \"TariffName\": \"abz One Wholesale PPM (2024)\",\n        \"RetailCost\": 2.25\n    },\n    {\n        \"TariffID\": \"7239\",\n        \"TariffName\": \"abz One Wholesale PPM + 500MB\",\n        \"RetailCost\": 3.7\n    },\n    {\n        \"TariffID\": \"9413\",\n        \"TariffName\": \"abz One Wholesale PPM + 500MB Shared\",\n        \"RetailCost\": 4.31\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\": \"7863\",\n        \"TariffName\": \"BT-ADSL2+\",\n        \"RetailCost\": 8.3\n    },\n    {\n        \"TariffID\": \"9310\",\n        \"TariffName\": \"O2 Abzorb 2022-2023\",\n        \"RetailCost\": 5.23\n    },\n    {\n        \"TariffID\": \"9703\",\n        \"TariffName\": \"O2 B1 Business Sharer + GR 10GB (2024)\",\n        \"RetailCost\": 18.08\n    },\n    {\n        \"TariffID\": \"9295\",\n        \"TariffName\": \"O2 Basic User \",\n        \"RetailCost\": 12.48\n    },\n    {\n        \"TariffID\": \"9309\",\n        \"TariffName\": \"O2 Business Data Flex + GR\",\n        \"RetailCost\": 17.4\n    },\n    {\n        \"TariffID\": \"9656\",\n        \"TariffName\": \"O2 Business Data Flex + GR (2024)\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9315\",\n        \"TariffName\": \"O2 Business Data Only + GR 100GB\",\n        \"RetailCost\": 47.71\n    },\n    {\n        \"TariffID\": \"9661\",\n        \"TariffName\": \"O2 Business Data Only + GR 100GB (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9312\",\n        \"TariffName\": \"O2 Business Data Only + GR 10GB\",\n        \"RetailCost\": 20.27\n    },\n    {\n        \"TariffID\": \"9658\",\n        \"TariffName\": \"O2 Business Data Only + GR 10GB (2024)\",\n        \"RetailCost\": 14\n    },\n    {\n        \"TariffID\": \"9313\",\n        \"TariffName\": \"O2 Business Data Only + GR 25GB\",\n        \"RetailCost\": 23.85\n    },\n    {\n        \"TariffID\": \"9659\",\n        \"TariffName\": \"O2 Business Data Only + GR 25GB (2024)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"9314\",\n        \"TariffName\": \"O2 Business Data Only + GR 50GB\",\n        \"RetailCost\": 35.78\n    },\n    {\n        \"TariffID\": \"9660\",\n        \"TariffName\": \"O2 Business Data Only + GR 50GB (2024)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"9311\",\n        \"TariffName\": \"O2 Business Data Only + GR 5GB\",\n        \"RetailCost\": 16.69\n    },\n    {\n        \"TariffID\": \"9657\",\n        \"TariffName\": \"O2 Business Data Only + GR 5GB (2024)\",\n        \"RetailCost\": 12\n    },\n    {\n        \"TariffID\": \"9662\",\n        \"TariffName\": \"O2 Business Data Only + GR Unlimited (2024)\",\n        \"RetailCost\": 22\n    },\n    {\n        \"TariffID\": \"9317\",\n        \"TariffName\": \"O2 Business Data Only sharer + GR 2GB\",\n        \"RetailCost\": 17.41\n    },\n    {\n        \"TariffID\": \"9666\",\n        \"TariffName\": \"O2 Business Data Only sharer + GR 4GB (2024)\",\n        \"RetailCost\": 13\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\": \"9316\",\n        \"TariffName\": \"O2 Business sharer + GR 2GB\",\n        \"RetailCost\": 19.79\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\": \"9305\",\n        \"TariffName\": \"O2 Business Single + GR 20GB\",\n        \"RetailCost\": 23.85\n    },\n    {\n        \"TariffID\": \"9652\",\n        \"TariffName\": \"O2 Business Single + GR 25GB (2024)\",\n        \"RetailCost\": 20\n    },\n    {\n        \"TariffID\": \"9429\",\n        \"TariffName\": \"O2 Business Single + GR 500MB\",\n        \"RetailCost\": 9.78\n    },\n    {\n        \"TariffID\": \"9650\",\n        \"TariffName\": \"O2 Business Single + GR 500MB (2024)\",\n        \"RetailCost\": 10\n    },\n    {\n        \"TariffID\": \"9306\",\n        \"TariffName\": \"O2 Business Single + GR 50GB\",\n        \"RetailCost\": 26.83\n    },\n    {\n        \"TariffID\": \"9653\",\n        \"TariffName\": \"O2 Business Single + GR 50GB (2024)\",\n        \"RetailCost\": 22\n    },\n    {\n        \"TariffID\": \"9304\",\n        \"TariffName\": \"O2 Business Single + GR 6GB\",\n        \"RetailCost\": 20.27\n    },\n    {\n        \"TariffID\": \"9651\",\n        \"TariffName\": \"O2 Business Single + GR 6GB (2024)\",\n        \"RetailCost\": 16\n    },\n    {\n        \"TariffID\": \"9307\",\n        \"TariffName\": \"O2 Business Single + GR Unlimited\",\n        \"RetailCost\": 30.41\n    },\n    {\n        \"TariffID\": \"9654\",\n        \"TariffName\": \"O2 Business Single + GR Unlimited (2024)\",\n        \"RetailCost\": 24\n    },\n    {\n        \"TariffID\": \"9308\",\n        \"TariffName\": \"O2 Business Single + GRE Unlimited Extra\",\n        \"RetailCost\": 39.36\n    },\n    {\n        \"TariffID\": \"9655\",\n        \"TariffName\": \"O2 Business Single + GRE Unlimited Extra (2024)\",\n        \"RetailCost\": 30\n    },\n    {\n        \"TariffID\": \"9644\",\n        \"TariffName\": \"O2 F1 Business Single + GR Unlimited\",\n        \"RetailCost\": 26\n    },\n    {\n        \"TariffID\": \"9643\",\n        \"TariffName\": \"O2 F1 Small Biz Unlimited (2022)\",\n        \"RetailCost\": 26\n    },\n    {\n        \"TariffID\": \"9613\",\n        \"TariffName\": \"O2 K1 Business Data Only sharer + GR 2GB\",\n        \"RetailCost\": 10.73\n    },\n    {\n        \"TariffID\": \"9612\",\n        \"TariffName\": \"O2 K1 Business sharer + GR 2GB\",\n        \"RetailCost\": 13\n    },\n    {\n        \"TariffID\": \"9681\",\n        \"TariffName\": \"O2 L1 Business Single + GR Unlimited (2024)\",\n        \"RetailCost\": 22.83\n    },\n    {\n        \"TariffID\": \"9296\",\n        \"TariffName\": \"O2 Micro User Single\",\n        \"RetailCost\": 8.51\n    },\n    {\n        \"TariffID\": \"7773\",\n        \"TariffName\": \"O2 Mobile Broadband 10GB (2022)\",\n        \"RetailCost\": 14.79\n    },\n    {\n        \"TariffID\": \"9646\",\n        \"TariffName\": \"O2 Mobile Broadband 12GB (2022)\",\n        \"RetailCost\": 15\n    },\n    {\n        \"TariffID\": \"9626\",\n        \"TariffName\": \"O2 Mobile Broadband 1GB Shared (2020)\",\n        \"RetailCost\": 12.23\n    },\n    {\n        \"TariffID\": \"3229\",\n        \"TariffName\": \"O2 Mobile Broadband 20GB (2017)\",\n        \"RetailCost\": 28.2\n    },\n    {\n        \"TariffID\": \"7771\",\n        \"TariffName\": \"O2 Mobile Broadband 2GB (2022)\",\n        \"RetailCost\": 10.01\n    },\n    {\n        \"TariffID\": \"7777\",\n        \"TariffName\": \"O2 Mobile Broadband 300GB (2022)\",\n        \"RetailCost\": 29.09\n    },\n    {\n        \"TariffID\": \"7775\",\n        \"TariffName\": \"O2 Mobile Broadband 30GB (2022)\",\n        \"RetailCost\": 19.55\n    },\n    {\n        \"TariffID\": \"9645\",\n        \"TariffName\": \"O2 Mobile Broadband 6GB (2022)\",\n        \"RetailCost\": 12.5\n    },\n    {\n        \"TariffID\": \"9616\",\n        \"TariffName\": \"O2 Mobile Broadband Unlimited (2024)\",\n        \"RetailCost\": 30\n    },\n    {\n        \"TariffID\": \"9625\",\n        \"TariffName\": \"O2 SIM only Small Biz 10GB Shared (2020)\",\n        \"RetailCost\": 23.24\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\": \"6999\",\n        \"TariffName\": \"O2 Small Biz 16GB (2019)\",\n        \"RetailCost\": 24.35\n    },\n    {\n        \"TariffID\": \"7759\",\n        \"TariffName\": \"O2 Small Biz 20GB (2022)\",\n        \"RetailCost\": 19.08\n    },\n    {\n        \"TariffID\": \"7198\",\n        \"TariffName\": \"O2 Small Biz 24GB (2020)\",\n        \"RetailCost\": 25.64\n    },\n    {\n        \"TariffID\": \"7390\",\n        \"TariffName\": \"O2 Small Biz 2GB (2021)\",\n        \"RetailCost\": 15.38\n    },\n    {\n        \"TariffID\": \"7009\",\n        \"TariffName\": \"O2 Small Biz 2GB (2022)\",\n        \"RetailCost\": 14.3\n    },\n    {\n        \"TariffID\": \"6994\",\n        \"TariffName\": \"O2 Small Biz 300MB (2019)\",\n        \"RetailCost\": 12.82\n    },\n    {\n        \"TariffID\": \"9649\",\n        \"TariffName\": \"O2 Small Biz 3GB Shares (2024)\",\n        \"RetailCost\": 18.48\n    },\n    {\n        \"TariffID\": \"9617\",\n        \"TariffName\": \"O2 Small Biz 500MB (2024)\",\n        \"RetailCost\": 10.5\n    },\n    {\n        \"TariffID\": \"7761\",\n        \"TariffName\": \"O2 Small Biz 50GB (2022)\",\n        \"RetailCost\": 21.47\n    },\n    {\n        \"TariffID\": \"6997\",\n        \"TariffName\": \"O2 Small Biz 5GB (2019)\",\n        \"RetailCost\": 18.57\n    },\n    {\n        \"TariffID\": \"7757\",\n        \"TariffName\": \"O2 Small Biz 6GB (2022)\",\n        \"RetailCost\": 16.69\n    },\n    {\n        \"TariffID\": \"9561\",\n        \"TariffName\": \"O2 Small Biz 7GB (2021)\",\n        \"RetailCost\": 16.66\n    },\n    {\n        \"TariffID\": \"7196\",\n        \"TariffName\": \"O2 Small Biz 8GB (2020)\",\n        \"RetailCost\": 20.51\n    },\n    {\n        \"TariffID\": \"9647\",\n        \"TariffName\": \"O2 Small Biz 9GB (2021)\",\n        \"RetailCost\": 18\n    },\n    {\n        \"TariffID\": \"3239\",\n        \"TariffName\": \"O2 Small Biz Data Share - Child (2017)\",\n        \"RetailCost\": 2.55\n    },\n    {\n        \"TariffID\": \"7768\",\n        \"TariffName\": \"O2 Small Biz Data Share (2022)\",\n        \"RetailCost\": 3.57\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\": \"7763\",\n        \"TariffName\": \"O2 Small Biz Unlimited (2022)\",\n        \"RetailCost\": 28.62\n    },\n    {\n        \"TariffID\": \"7769\",\n        \"TariffName\": \"O2 Small Biz Voice & Data Share (2022)\",\n        \"RetailCost\": 18.48\n    },\n    {\n        \"TariffID\": \"7779\",\n        \"TariffName\": \"O2 Unlimited Data Flex (2022)\",\n        \"RetailCost\": 17.4\n    },\n    {\n        \"TariffID\": \"3276\",\n        \"TariffName\": \"O2 wholesale PPM (2017)\",\n        \"RetailCost\": 5.75\n    },\n    {\n        \"TariffID\": \"9614\",\n        \"TariffName\": \"VF Academia Data Only 2GB\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"9301\",\n        \"TariffName\": \"VF B10 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 38.67\n    },\n    {\n        \"TariffID\": \"9299\",\n        \"TariffName\": \"VF B10 Evolve 24m Business Single 25GB\",\n        \"RetailCost\": 26.58\n    },\n    {\n        \"TariffID\": \"9298\",\n        \"TariffName\": \"VF B10 Evolve 24m Business Single 2GB\",\n        \"RetailCost\": 16.06\n    },\n    {\n        \"TariffID\": \"9300\",\n        \"TariffName\": \"VF B10 Mobile Broadband Unlimited (2021)\",\n        \"RetailCost\": 38.39\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\": \"9327\",\n        \"TariffName\": \"VF B13 Evolve 24m Business Sharer 2GB\",\n        \"RetailCost\": 16.97\n    },\n    {\n        \"TariffID\": \"9411\",\n        \"TariffName\": \"VF B14 Evolve 24m Business Sharer 2GB\",\n        \"RetailCost\": 18.78\n    },\n    {\n        \"TariffID\": \"9426\",\n        \"TariffName\": \"VF B15 Evolve 24m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 14.02\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\": \"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\": \"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\": \"9648\",\n        \"TariffName\": \"VF B23 Evolve 36m Business Single 25GB (2023)\",\n        \"RetailCost\": 13\n    },\n    {\n        \"TariffID\": \"9226\",\n        \"TariffName\": \"VF B5 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 33.31\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\": \"9231\",\n        \"TariffName\": \"VF B6 Evolve 24m Business Single 6GB\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"9234\",\n        \"TariffName\": \"VF B7 Evolve 36m Business Sharer 6GB\",\n        \"RetailCost\": 24.68\n    },\n    {\n        \"TariffID\": \"9239\",\n        \"TariffName\": \"VF B8 Data Sim Unlimited (2021)\",\n        \"RetailCost\": 32.97\n    },\n    {\n        \"TariffID\": \"9238\",\n        \"TariffName\": \"VF B8 Evolve 24m Business Pro Unlimited\",\n        \"RetailCost\": 37.03\n    },\n    {\n        \"TariffID\": \"9237\",\n        \"TariffName\": \"VF B8 Evolve 24m Business Single 12GB\",\n        \"RetailCost\": 18.48\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\": \"9282\",\n        \"TariffName\": \"VF B9 Evolve 24m Business Sharer 6GB\",\n        \"RetailCost\": 19.74\n    },\n    {\n        \"TariffID\": \"9713\",\n        \"TariffName\": \"VF BCU Business Pro Unlimited (2023)\",\n        \"RetailCost\": 45\n    },\n    {\n        \"TariffID\": \"9711\",\n        \"TariffName\": \"VF BCU Business Single 12GB (2023)\",\n        \"RetailCost\": 5.13\n    },\n    {\n        \"TariffID\": \"9709\",\n        \"TariffName\": \"VF BCU Business Single 2GB (2023)\",\n        \"RetailCost\": 2.58\n    },\n    {\n        \"TariffID\": \"9712\",\n        \"TariffName\": \"VF BCU Business Single 50GB (2023)\",\n        \"RetailCost\": 12\n    },\n    {\n        \"TariffID\": \"9710\",\n        \"TariffName\": \"VF BCU Business Single 6GB (2023)\",\n        \"RetailCost\": 3.6\n    },\n    {\n        \"TariffID\": \"9708\",\n        \"TariffName\": \"VF BCU Business Voice (2023)\",\n        \"RetailCost\": 2.07\n    },\n    {\n        \"TariffID\": \"9717\",\n        \"TariffName\": \"VF BCU Data Only 100GB (2023)\",\n        \"RetailCost\": 24\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\": \"9714\",\n        \"TariffName\": \"VF BCU Data Only 2GB (2023)\",\n        \"RetailCost\": 5.52\n    },\n    {\n        \"TariffID\": \"9718\",\n        \"TariffName\": \"VF BCU Data Only Unlimited (2023)\",\n        \"RetailCost\": 18.24\n    },\n    {\n        \"TariffID\": \"7134\",\n        \"TariffName\": \"VF Bus Opt Data Only 750\",\n        \"RetailCost\": 2.63\n    },\n    {\n        \"TariffID\": \"7375\",\n        \"TariffName\": \"VF Bus Opt Data Only 750 - (Whit)\",\n        \"RetailCost\": 1.32\n    },\n    {\n        \"TariffID\": \"7133\",\n        \"TariffName\": \"VF Bus Opt Voice and Data 750\",\n        \"RetailCost\": 18.54\n    },\n    {\n        \"TariffID\": \"7376\",\n        \"TariffName\": \"VF Bus Opt Voice and Data 750 - (Whit)\",\n        \"RetailCost\": 9.27\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\": \"2982\",\n        \"TariffName\": \"VF Business Advance Basic BT Child\",\n        \"RetailCost\": 29.93\n    },\n    {\n        \"TariffID\": \"9674\",\n        \"TariffName\": \"VF Business Data Flex\",\n        \"RetailCost\": 12.5\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\": \"9670\",\n        \"TariffName\": \"VF Business Data Only 4GB\",\n        \"RetailCost\": 13.65\n    },\n    {\n        \"TariffID\": \"9673\",\n        \"TariffName\": \"VF Business Data Only Unlimited\",\n        \"RetailCost\": 32.97\n    },\n    {\n        \"TariffID\": \"9675\",\n        \"TariffName\": \"VF Business Flex Data Only\",\n        \"RetailCost\": 5.5\n    },\n    {\n        \"TariffID\": \"9412\",\n        \"TariffName\": \"VF Business Pro Unlimited (2023)\",\n        \"RetailCost\": 12.94\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\": \"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\": \"9680\",\n        \"TariffName\": \"VF Business Single Unlimited\",\n        \"RetailCost\": 32.97\n    },\n    {\n        \"TariffID\": \"7715\",\n        \"TariffName\": \"VF Data Sim 10GB (2021) - Catapult\",\n        \"RetailCost\": 9.3\n    },\n    {\n        \"TariffID\": \"7742\",\n        \"TariffName\": \"VF Data Sim 30GB (2021) - Catapult\",\n        \"RetailCost\": 13.38\n    },\n    {\n        \"TariffID\": \"7741\",\n        \"TariffName\": \"VF Data Sim 4GB (2021) - Catapult\",\n        \"RetailCost\": 6.67\n    },\n    {\n        \"TariffID\": \"7716\",\n        \"TariffName\": \"VF Data Sim Unlimited Max (2021) - Catapult\",\n        \"RetailCost\": 28.06\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\": \"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\": \"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\": \"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\": \"7707\",\n        \"TariffName\": \"VF Evolve 24m Business Data 4GB - Catapult\",\n        \"RetailCost\": 17.1\n    },\n    {\n        \"TariffID\": \"9383\",\n        \"TariffName\": \"VF Evolve 24m Business Data 4GB (2023)\",\n        \"RetailCost\": 23.73\n    },\n    {\n        \"TariffID\": \"7701\",\n        \"TariffName\": \"VF Evolve 24m Business Pro Unlimited - Catapult\",\n        \"RetailCost\": 39.31\n    },\n    {\n        \"TariffID\": \"9361\",\n        \"TariffName\": \"VF Evolve 24m Business Pro Unlimited (2023)\",\n        \"RetailCost\": 52.87\n    },\n    {\n        \"TariffID\": \"7710\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 12GB - Catapult\",\n        \"RetailCost\": 33.46\n    },\n    {\n        \"TariffID\": \"9382\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 12GB (2023)\",\n        \"RetailCost\": 50.71\n    },\n    {\n        \"TariffID\": \"9379\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 1GB (2023)\",\n        \"RetailCost\": 20.5\n    },\n    {\n        \"TariffID\": \"7708\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 2GB - Catapult\",\n        \"RetailCost\": 18.88\n    },\n    {\n        \"TariffID\": \"9380\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 23.19\n    },\n    {\n        \"TariffID\": \"7709\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 6GB - Catapult\",\n        \"RetailCost\": 24.87\n    },\n    {\n        \"TariffID\": \"9381\",\n        \"TariffName\": \"VF Evolve 24m Business Sharer 6GB (2023)\",\n        \"RetailCost\": 35.6\n    },\n    {\n        \"TariffID\": \"7699\",\n        \"TariffName\": \"VF Evolve 24m Business Single 12GB - Catapult\",\n        \"RetailCost\": 16.84\n    },\n    {\n        \"TariffID\": \"9358\",\n        \"TariffName\": \"VF Evolve 24m Business Single 12GB (2023)\",\n        \"RetailCost\": 24.81\n    },\n    {\n        \"TariffID\": \"7341\",\n        \"TariffName\": \"VF Evolve 24m Business Single 25GB\",\n        \"RetailCost\": 36.41\n    },\n    {\n        \"TariffID\": \"7700\",\n        \"TariffName\": \"VF Evolve 24m Business Single 25GB - Catapult\",\n        \"RetailCost\": 21.66\n    },\n    {\n        \"TariffID\": \"9359\",\n        \"TariffName\": \"VF Evolve 24m Business Single 25GB (2023)\",\n        \"RetailCost\": 31.83\n    },\n    {\n        \"TariffID\": \"7697\",\n        \"TariffName\": \"VF Evolve 24m Business Single 2GB - Catapult\",\n        \"RetailCost\": 11.6\n    },\n    {\n        \"TariffID\": \"9356\",\n        \"TariffName\": \"VF Evolve 24m Business Single 2GB (2023)\",\n        \"RetailCost\": 18.88\n    },\n    {\n        \"TariffID\": \"9360\",\n        \"TariffName\": \"VF Evolve 24m Business Single 50GB (2023)\",\n        \"RetailCost\": 35.6\n    },\n    {\n        \"TariffID\": \"7698\",\n        \"TariffName\": \"VF Evolve 24m Business Single 6GB - Catapult\",\n        \"RetailCost\": 15.24\n    },\n    {\n        \"TariffID\": \"9357\",\n        \"TariffName\": \"VF Evolve 24m Business Single 6GB (2023)\",\n        \"RetailCost\": 22.65\n    },\n    {\n        \"TariffID\": \"9355\",\n        \"TariffName\": \"VF Evolve 24m Business Voice (2023)\",\n        \"RetailCost\": 17.8\n    },\n    {\n        \"TariffID\": \"9365\",\n        \"TariffName\": \"VF Evolve 24m Data Only 100GB (2023)\",\n        \"RetailCost\": 26.97\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\": \"9362\",\n        \"TariffName\": \"VF Evolve 24m Data Only 2GB (2023)\",\n        \"RetailCost\": 13.48\n    },\n    {\n        \"TariffID\": \"9366\",\n        \"TariffName\": \"VF Evolve 24m Data Only Unlimited (2023)\",\n        \"RetailCost\": 42.08\n    },\n    {\n        \"TariffID\": \"7711\",\n        \"TariffName\": \"VF Evolve 36m Business Data 4GB - Catapult\",\n        \"RetailCost\": 16.04\n    },\n    {\n        \"TariffID\": \"9388\",\n        \"TariffName\": \"VF Evolve 36m Business Data 4GB (2023)\",\n        \"RetailCost\": 22.38\n    },\n    {\n        \"TariffID\": \"9373\",\n        \"TariffName\": \"VF Evolve 36m Business Pro Unlimited (2023)\",\n        \"RetailCost\": 48.55\n    },\n    {\n        \"TariffID\": \"7706\",\n        \"TariffName\": \"VF Evolve 36m Business Pro Unlimited- Catapult\",\n        \"RetailCost\": 33.46\n    },\n    {\n        \"TariffID\": \"7714\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 12GB - Catapult\",\n        \"RetailCost\": 31.23\n    },\n    {\n        \"TariffID\": \"9387\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 12GB (2023)\",\n        \"RetailCost\": 47.47\n    },\n    {\n        \"TariffID\": \"9384\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 1GB (2023)\",\n        \"RetailCost\": 17.26\n    },\n    {\n        \"TariffID\": \"7712\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 2GB - Catapult\",\n        \"RetailCost\": 13.64\n    },\n    {\n        \"TariffID\": \"9385\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 2GB (2023)\",\n        \"RetailCost\": 19.96\n    },\n    {\n        \"TariffID\": \"7713\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 6GB - Catapult\",\n        \"RetailCost\": 20.82\n    },\n    {\n        \"TariffID\": \"9386\",\n        \"TariffName\": \"VF Evolve 36m Business Sharer 6GB (2023)\",\n        \"RetailCost\": 32.37\n    },\n    {\n        \"TariffID\": \"7704\",\n        \"TariffName\": \"VF Evolve 36m Business Single 12GB - Catapult\",\n        \"RetailCost\": 13.38\n    },\n    {\n        \"TariffID\": \"9370\",\n        \"TariffName\": \"VF Evolve 36m Business Single 12GB (2023)\",\n        \"RetailCost\": 21.58\n    },\n    {\n        \"TariffID\": \"7347\",\n        \"TariffName\": \"VF Evolve 36m Business Single 25GB\",\n        \"RetailCost\": 32.37\n    },\n    {\n        \"TariffID\": \"7705\",\n        \"TariffName\": \"VF Evolve 36m Business Single 25GB - Catapult\",\n        \"RetailCost\": 19.25\n    },\n    {\n        \"TariffID\": \"9371\",\n        \"TariffName\": \"VF Evolve 36m Business Single 25GB (2023)\",\n        \"RetailCost\": 28.59\n    },\n    {\n        \"TariffID\": \"7702\",\n        \"TariffName\": \"VF Evolve 36m Business Single 2GB - Catapult\",\n        \"RetailCost\": 8.92\n    },\n    {\n        \"TariffID\": \"9368\",\n        \"TariffName\": \"VF Evolve 36m Business Single 2GB (2023)\",\n        \"RetailCost\": 15.64\n    },\n    {\n        \"TariffID\": \"9372\",\n        \"TariffName\": \"VF Evolve 36m Business Single 50GB (2023)\",\n        \"RetailCost\": 32.37\n    },\n    {\n        \"TariffID\": \"7703\",\n        \"TariffName\": \"VF Evolve 36m Business Single 6GB - Catapult\",\n        \"RetailCost\": 12.83\n    },\n    {\n        \"TariffID\": \"9369\",\n        \"TariffName\": \"VF Evolve 36m Business Single 6GB (2023)\",\n        \"RetailCost\": 19.42\n    },\n    {\n        \"TariffID\": \"9367\",\n        \"TariffName\": \"VF Evolve 36m Business Voice (2023)\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9377\",\n        \"TariffName\": \"VF Evolve 36m Data Only 100GB (2023)\",\n        \"RetailCost\": 25.89\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\": \"9374\",\n        \"TariffName\": \"VF Evolve 36m Data Only 2GB (2023)\",\n        \"RetailCost\": 12.13\n    },\n    {\n        \"TariffID\": \"9378\",\n        \"TariffName\": \"VF Evolve 36m Data Only Unlimited (2023)\",\n        \"RetailCost\": 37.76\n    },\n    {\n        \"TariffID\": \"9446\",\n        \"TariffName\": \"VF Evolve Business Data 4GB\",\n        \"RetailCost\": 16.99\n    },\n    {\n        \"TariffID\": \"9440\",\n        \"TariffName\": \"VF Evolve Business Pro Unlimited\",\n        \"RetailCost\": 41\n    },\n    {\n        \"TariffID\": \"9445\",\n        \"TariffName\": \"VF Evolve Business Sharer 12GB\",\n        \"RetailCost\": 42.08\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\": \"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\": \"9439\",\n        \"TariffName\": \"VF Evolve Business Single 2GB\",\n        \"RetailCost\": 15.64\n    },\n    {\n        \"TariffID\": \"9433\",\n        \"TariffName\": \"VF Evolve Business Single 50GB\",\n        \"RetailCost\": 29.13\n    },\n    {\n        \"TariffID\": \"9430\",\n        \"TariffName\": \"VF Evolve Business Single 6GB\",\n        \"RetailCost\": 17.26\n    },\n    {\n        \"TariffID\": \"9438\",\n        \"TariffName\": \"VF Evolve Business Voice\",\n        \"RetailCost\": 14.56\n    },\n    {\n        \"TariffID\": \"9437\",\n        \"TariffName\": \"VF Evolve Data Only 100GB\",\n        \"RetailCost\": 20.5\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\": \"9434\",\n        \"TariffName\": \"VF Evolve Data Only 2GB\",\n        \"RetailCost\": 13.48\n    },\n    {\n        \"TariffID\": \"9441\",\n        \"TariffName\": \"VF Evolve Data Only Unlimited\",\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\": \"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\": \"7378\",\n        \"TariffName\": \"VF Sharer Unlimited Voice - (2021) - (Whit)\",\n        \"RetailCost\": 9.27\n    },\n    {\n        \"TariffID\": \"7671\",\n        \"TariffName\": \"VF Single 25GB - (2021)\",\n        \"RetailCost\": 29.67\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\": \"7354\",\n        \"TariffName\": \"VF Single Unlimited - (2021)\",\n        \"RetailCost\": 52.6\n    },\n    {\n        \"TariffID\": \"3310\",\n        \"TariffName\": \"VF Virocom PPM - Child\",\n        \"RetailCost\": 0\n    },\n    {\n        \"TariffID\": \"7317\",\n        \"TariffName\": \"VF Wholesale PPM (2021)\",\n        \"RetailCost\": 5.54\n    }\n]"}],"_postman_id":"4f39cc62-84f9-42d7-b156-62e809e3cfbf"},{"name":"Get Tariffs for Network","id":"8bb297a7-fa00-4a99-b39e-4ff7a10e6691","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://abzorbapi.click2sign.co.uk:8074/api/Tariff/ListTariffsForNetwork?NetworkCode=<network_code>","description":"<h3 id=\"list-tariffs-for-network\">List Tariffs for Network</h3>\n<h2 id=\"endpoint\">Endpoint</h2>\n<p><code>`GET /api/Bundles/ListTariffsForNetwork/`</code></p>\n<h2 id=\"description\">Description</h2>\n<p>This endpoint retrieves tariffs available against a specific network.</p>\n<p>Applicable <code>networkCode</code> values are listed below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Network</strong></th>\n<th><strong>Network ID</strong></th>\n<th><strong>Network Code</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>abZ</td>\n<td>40</td>\n<td>abz</td>\n</tr>\n<tr>\n<td>O2</td>\n<td>31</td>\n<td>o2</td>\n</tr>\n<tr>\n<td>Vodafone</td>\n<td>2</td>\n<td>vf</td>\n</tr>\n</tbody>\n</table>\n</div><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>networkCode</td>\n<td>string</td>\n<td>The network code for a specific network</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    \"TariffID\": 0,\n    \"TariffName\": \"\",\n    \"RetailCost\": 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>TariffID</td>\n<td>long</td>\n<td>The unique ID of the tariff</td>\n</tr>\n<tr>\n<td>TariffName</td>\n<td>string</td>\n<td>The name of the tariff</td>\n</tr>\n<tr>\n<td>RetailCost</td>\n<td>decimal</td>\n<td>The price of the tariff</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["ListTariffsForNetwork"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Tariff"],"query":[{"key":"NetworkCode","value":"<network_code>"}],"variable":[]}},"response":[{"id":"073cd2ec-152e-4e7d-9f38-fef385c5e197","name":"Get Tariffs for Network","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}Tariff/ListTariffsForNetwork?NetworkCode=<network_code>","host":["{{baseUrl}}Tariff"],"path":["ListTariffsForNetwork"],"query":[{"key":"NetworkCode","value":"<network_code>"}]}},"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:59:01 GMT"},{"key":"Content-Length","value":"6659"}],"cookie":[],"responseTime":null,"body":"[\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\": 3276,\n        \"TariffName\": \"O2 wholesale PPM (2017)\",\n        \"RetailCost\": 5.75\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\": 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\": 7390,\n        \"TariffName\": \"O2 Small Biz 2GB (2021)\",\n        \"RetailCost\": 15.38\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\": 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\": 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\": 9429,\n        \"TariffName\": \"O2 Business Single + GR 500MB\",\n        \"RetailCost\": 9.78\n    },\n    {\n        \"TariffID\": 9561,\n        \"TariffName\": \"O2 Small Biz 7GB (2021)\",\n        \"RetailCost\": 16.66\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\": 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\": 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\": 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\": 9681,\n        \"TariffName\": \"O2 L1 Business Single + GR Unlimited (2024)\",\n        \"RetailCost\": 22.83\n    },\n    {\n        \"TariffID\": 9703,\n        \"TariffName\": \"O2 B1 Business Sharer + GR 10GB (2024)\",\n        \"RetailCost\": 18.08\n    },\n    {\n        \"TariffID\": 9722,\n        \"TariffName\": \"Bens Final Mobile Tariff Test 17.06\",\n        \"RetailCost\": 0\n    }\n]"}],"_postman_id":"8bb297a7-fa00-4a99-b39e-4ff7a10e6691"}],"id":"392a6591-4b57-437d-b4bf-9ebd9ab32270","_postman_id":"392a6591-4b57-437d-b4bf-9ebd9ab32270","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Get Tariffs for Connection","id":"a089b006-8c13-456b-89a5-676cfd709638","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://abzorbapi.click2sign.co.uk:8074/api/Tariff/GetTariffsForContract?contractId=<contract_ids>","description":"<h3 id=\"get-tariffs-for-connection\">Get Tariffs for Connection</h3>\n<h2 id=\"endpoint\">Endpoint</h2>\n<p><code>`GET /api/Tariff/GetTariffsForContract/`</code></p>\n<h2 id=\"description\">Description</h2>\n<p>This endpoint retrieves tariffs available against a specific contract record.</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 an active mobile connection</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    \"TariffID\": 0,\n    \"TariffName\": \"\",\n    \"RetailCost\": 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>TariffID</td>\n<td>long</td>\n<td>The unique ID of the tariff</td>\n</tr>\n<tr>\n<td>TariffName</td>\n<td>string</td>\n<td>The name of the tariff</td>\n</tr>\n<tr>\n<td>RetailCost</td>\n<td>decimal</td>\n<td>The price of the tariff</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["GetTariffsForContract"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Tariff"],"query":[{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"a10acf1f-a262-4d87-a4be-e7de0e34eec5","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":"a089b006-8c13-456b-89a5-676cfd709638"},{"name":"Tariff Change","id":"b751dbee-e866-4809-8f67-497085d59a3f","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://abzorbapi.click2sign.co.uk:8074/api/Tariff/ChangeTariff?ConnectionID=<contract_ids>&TariffID=<tariff_id>","description":"<h2 id=\"tariff-change\">Tariff Change</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`POST /api/sim/ChangeSIM/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Allows you to perform a Tariff change for a specifc connection onto a new tariff</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>Unique ID of the mobile connection</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>TariffID</td>\n<td>long</td>\n<td>The unique ID of a 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://abzorbapi.click2sign.co.uk:8074/api/Tariff"],"query":[{"key":"ConnectionID","value":"<contract_ids>"},{"key":"TariffID","value":"<tariff_id>"}],"variable":[]}},"response":[{"id":"750e9000-cab2-4cb9-9cd6-eba774063981","name":"Tariff Change","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}Tariff/ChangeTariff?ConnectionID=<contract_ids>&TariffID=<tariff_id>","host":["{{baseUrl}}Tariff"],"path":["ChangeTariff"],"query":[{"key":"ConnectionID","value":"<contract_ids>"},{"key":"TariffID","value":"<tariff_id>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"text/plain"},{"key":"Content-Encoding","value":"gzip"},{"key":"Expires","value":"-1"},{"key":"Vary","value":"Accept-Encoding"},{"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:03:55 GMT"},{"key":"Content-Length","value":"172"}],"cookie":[],"responseTime":null,"body":"Tariff changed requested successfully, DiaryEntryID: 6435527"}],"_postman_id":"b751dbee-e866-4809-8f67-497085d59a3f"}],"id":"c4fd4431-26a7-4968-aa98-6ffb900bfb9b","_postman_id":"c4fd4431-26a7-4968-aa98-6ffb900bfb9b","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"0cfee9f3-5cac-4ac1-8717-5fb444f091d4","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":"0cfee9f3-5cac-4ac1-8717-5fb444f091d4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Tasks Controller","item":[{"name":"Appendix","item":[{"name":"Get Task Types","id":"1788a588-5c5b-4451-9188-dd72f880f992","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://abzorbapi.click2sign.co.uk:8074/api/Tasks/GetDiaryTaskTypes/","description":"<h2 id=\"get-ticket-task-types\">Get Ticket Task Types</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Tasks/GetDiaryTaskTypes/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>Returns a list of applicable ticket types</p>\n<h3 id=\"method\">Method</h3>\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","urlObject":{"path":["GetDiaryTaskTypes",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Tasks"],"query":[],"variable":[]}},"response":[],"_postman_id":"1788a588-5c5b-4451-9188-dd72f880f992"}],"id":"2ba1ba55-9208-4322-8619-1b6351e3f576","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":"2ba1ba55-9208-4322-8619-1b6351e3f576","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Add Comment to Ticket","id":"fbb80eba-557e-4304-a8b5-93bf6f310e92","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://abzorbapi.click2sign.co.uk:8074/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 task</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<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://abzorbapi.click2sign.co.uk:8074/api/tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"},{"key":"comment","value":"\"\"\""}],"variable":[]}},"response":[{"id":"2a0d3f51-9fb2-4e30-92d6-9750d51c6c96","name":"Add Task Coment","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/tasks/AddTaskComment?DiaryEntryID={{ticket_id}}&Comment=Abzorb Test","host":["https://abzorbapi.click2sign.co.uk:8074/api/tasks"],"path":["AddTaskComment"],"query":[{"key":"DiaryEntryID","value":"{{ticket_id}}"},{"key":"Comment","value":"Abzorb Test"}]}},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"text/plain"},{"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":"Comment successfully added to DiaryEntryID: 6435527"}],"_postman_id":"fbb80eba-557e-4304-a8b5-93bf6f310e92"},{"name":"Get Comments for Ticket","id":"2741dade-1e6e-45ae-a93c-cda9cf384e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/Tasks/GetCommentsForTask/?diaryEntryId=<diary_entry_id>","description":"<h2 id=\"get-comments-for-task\">Get Comments For Task</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Tasks/GetCommentsForTask/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all ticket comments relating to a ticket.</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>diaryEntryId</td>\n<td>long</td>\n<td>The unqiue ID of 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   \"DiaryCommentID\": 0,\n   \"DiaryEntryID\": 0,\n   \"CreatedTime\": \"0001-01-01T00:00:00\",\n   \"Comment\": \"\"\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>DiaryCommentID</td>\n<td>long</td>\n<td>Unique ID of the comment</td>\n</tr>\n<tr>\n<td>DiaryEntryID</td>\n<td>long</td>\n<td>Unique ID of the ticket</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date and time the comment was added</td>\n</tr>\n<tr>\n<td>Comment</td>\n<td>string</td>\n<td>The comment added against the ticket</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["GetCommentsForTask",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/Tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"}],"variable":[]}},"response":[{"id":"11f10269-e85e-42f6-99f1-5e7313dc29c3","name":"Get Comments for Ticket","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Tasks/GetCommentsForTask/?diaryEntryId=<diary_entry_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n   \"DiaryCommentID\": 0,\r\n   \"DiaryEntryID\": 0,\r\n   \"CreatedTime\": \"0001-01-01T00:00:00\",\r\n   \"Comment\": \"\"\r\n}"}],"_postman_id":"2741dade-1e6e-45ae-a93c-cda9cf384e5d"},{"name":"Get Tickets for Order","id":"30ec882c-7144-4bdd-927c-3286a234d03b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://abzorbapi.click2sign.co.uk:8074/api/tasks/GetTicketsForOrder?orderId=<order_id>","description":"<h2 id=\"get-tickets-for-order\">Get Tickets For Order</h2>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>`GET /api/Tasks/GetTicketsForOrder/`</code></p>\n<h3 id=\"description\">Description</h3>\n<p>This endpoints returns all tickets related to an 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 roder</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    10533780\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>DiaryCommentID</td>\n<td>long</td>\n<td>Unique ID of the comment</td>\n</tr>\n<tr>\n<td>DiaryEntryID</td>\n<td>long</td>\n<td>Unique ID of the ticket</td>\n</tr>\n<tr>\n<td>CreatedTime</td>\n<td>datetime</td>\n<td>The date and time the comment was added</td>\n</tr>\n<tr>\n<td>Comment</td>\n<td>string</td>\n<td>The comment added against the ticket</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":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}},"urlObject":{"path":["GetTicketsForOrder"],"host":["https://abzorbapi.click2sign.co.uk:8074/api/tasks"],"query":[{"key":"orderId","value":"<order_id>"}],"variable":[]}},"response":[{"id":"6a10d096-17c7-434c-b9e5-d6b555e0987b","name":"Get Tickets for Order","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/tasks/GetTicketsForOrder?OrderID=<order_id>","host":["https://abzorbapi.click2sign.co.uk:8074/api/tasks"],"path":["GetTicketsForOrder"],"query":[{"key":"OrderID","value":"<order_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    10533780\r\n]"}],"_postman_id":"30ec882c-7144-4bdd-927c-3286a234d03b"},{"name":"Raise Task","id":"37a56843-5256-4295-bda4-c27a361772a2","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://abzorbapi.click2sign.co.uk:8074/api/tasks/RaiseTask/?DiaryTaskID=<diary_task_id>&Comment=\"\"&ContractID=<contract_ids>","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 ContractID</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>DiaryTaskID</td>\n<td>long</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://abzorbapi.click2sign.co.uk:8074/api/tasks"],"query":[{"key":"DiaryTaskID","value":"<diary_task_id>"},{"key":"Comment","value":"\"\""},{"key":"ContractID","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"3ace2513-3309-4477-afe8-de59aef9663e","name":"Raise Task","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Tasks/RaiseTask/?DiaryTaskID=<diary_task_id>&Comment=\"\"&ContractID=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/api/Tasks"],"path":["RaiseTask",""],"query":[{"key":"DiaryTaskID","value":"<diary_task_id>"},{"key":"Comment","value":"\"\""},{"key":"ContractID","value":"<contract_ids>"}]}},"_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":"37a56843-5256-4295-bda4-c27a361772a2"},{"name":"View Task Status - Bulk","id":"0dfb1b72-fdb5-41a2-84cf-13b794a40de2","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://abzorbapi.click2sign.co.uk:8074/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>","urlObject":{"path":["ViewTaskStatusBulk",""],"host":["https://abzorbapi.click2sign.co.uk:8074/api/tasks"],"query":[{"key":"lapsedTime","value":"<lapsed_time>"}],"variable":[]}},"response":[{"id":"95a79ba9-c976-412f-ad3e-0f3771b120d0","name":"View Task Status - Bulk","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/tasks/ViewTaskStatusBulk/?LapsedTime=<lapsed_time>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"0dfb1b72-fdb5-41a2-84cf-13b794a40de2"},{"name":"View Task Status","id":"93399f8d-e322-4587-9af0-df1de42cb993","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/Tasks"],"query":[{"key":"diaryEntryId","value":"<diary_entry_id>"}],"variable":[]}},"response":[{"id":"effc732b-65e8-48e5-a647-9b4e9af439e5","name":"View Task Status","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/Tasks/ViewTaskStatus/?DiaryEntryID=<diary_entry_id>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"93399f8d-e322-4587-9af0-df1de42cb993"}],"id":"9a0ac341-0cd5-404b-8e9f-ea8490993471","description":"<p>This subfolder contains the primary API calls for the <code>/api/tasks</code>endpoint.</p>\n","_postman_id":"9a0ac341-0cd5-404b-8e9f-ea8490993471","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"f7dd127b-3288-49bf-a7b2-55210c78d559","description":"<p>The <code>/tasks</code> endpoint allows for tickets to be created, viewed and updated.</p>\n","_postman_id":"f7dd127b-3288-49bf-a7b2-55210c78d559","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Usage","item":[{"name":"Appendix","item":[],"id":"83a3c643-7db3-4166-97df-f92d5e35dead","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":"83a3c643-7db3-4166-97df-f92d5e35dead","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}},{"name":"Main Calls","item":[{"name":"Group Data Usage Groups","id":"adfe533a-9690-414f-9859-8daa167179cf","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/usage"],"query":[],"variable":[]}},"response":[],"_postman_id":"adfe533a-9690-414f-9859-8daa167179cf"},{"name":"Get Usage Information for CLI","id":"f378d509-04eb-4ffc-b875-d89850938639","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/usage"],"query":[{"key":"contractId","value":"<contract_ids>"}],"variable":[]}},"response":[{"id":"1258bdcc-580a-4b1a-9608-0ead4002b9ab","name":"Get Usage Information for CLI","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://abzorbapi.click2sign.co.uk:8074/api/usage/GetUsageInformationForCli?contracTId=<contract_ids>","host":["https://abzorbapi.click2sign.co.uk:8074/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":"f378d509-04eb-4ffc-b875-d89850938639"},{"name":"Group Data Usage Groups for Customer","id":"d55b940f-db50-4cc3-ab97-cad46542f1c0","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/usage"],"query":[{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[],"_postman_id":"d55b940f-db50-4cc3-ab97-cad46542f1c0"},{"name":"Group Data Usage for CLIs","id":"717d7e37-4d28-43ab-8b1e-9e92103c117b","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://abzorbapi.click2sign.co.uk:8074/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://abzorbapi.click2sign.co.uk:8074/api/usage"],"query":[{"key":"groupId","value":"<group_id>"},{"key":"customerId","value":"<customer_id>"}],"variable":[]}},"response":[],"_postman_id":"717d7e37-4d28-43ab-8b1e-9e92103c117b"}],"id":"d735baf0-ff7b-4bd0-b8d3-1ea41815081d","description":"<p>This subfolder contains the primary API calls for the <code>/api/usage</code>endpoint.</p>\n","_postman_id":"d735baf0-ff7b-4bd0-b8d3-1ea41815081d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"id":"3e2191e6-18b4-4fad-971a-a09cb4fddcc8","description":"<p>The <code>/usage</code>endpoint allows you to view group data usage and itemised usage for mobile connections</p>\n","_postman_id":"3e2191e6-18b4-4fad-971a-a09cb4fddcc8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]},"isInherited":true,"source":{"_postman_id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","id":"75b61dbd-d1c3-45d0-80d1-f692f4a20c7d","name":"Abzorb API Documentation - v6.3","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<your_username>"},{"key":"password","value":"<your_password>"}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"af89caec-caab-496c-9ab1-7e57054bfb78"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"342f72b4-f0f1-495e-87fa-719085fa0f86"}}],"variable":[{"key":"base_url","value":"https://abzorbapi.click2sign.co.uk:8074/api/"},{"key":"username","value":"<your_username>","type":"string"},{"key":"password","value":"<your_password>","type":"string"},{"key":"network_code","value":"<network_code>","type":"string"},{"key":"contract_id","value":"<contract_ids>","type":"string"},{"key":"cli","value":"<cli>","type":"string"},{"key":"bar_suffix","value":"<bar_suffix>","type":"string"},{"key":"sim","value":"<sim>","type":"string"},{"key":"tariff_id","value":"<tariff_id>","type":"string"},{"key":"customer_id","value":"<customer_id>","type":"string"},{"key":"diary_task_id","value":"<diary_task_id>","type":"string"},{"key":"diary_entry_id","value":"<diary_entry_id>","type":"string"},{"key":"order_id","value":"<order_id>","type":"string"},{"key":"toggle","value":"<toggle_bar>","type":"string"},{"key":"comment","value":"<comment>","type":"string"},{"key":"lapsed_time","value":"<lapsed_time>","type":"string"},{"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":"","type":"default"},{"key":"pac_request_id","value":"","type":"default"}]}