{"info":{"_postman_id":"e0fa967b-02f0-4a88-bda2-f26930886238","name":"NEON APIs","description":"<html><head></head><body><p><strong>Step 1.</strong><br>Get Client ID and Client Secret<br>To get a Client ID and Client Secret, you need to create an app registration within the Neon App Centre. During this process, you need to define your Redirect URI. This URI is used by the authorisation server to redirect users back to your application(website) after authentication. Make sure you configure the redirect URI with the endpoint to which your application listens to.</p>\n<p>Admin-&gt;Apps</p>\n<p><strong>Step 2.</strong></p>\n<p>Set up authorization requests<br>When you have your registration containing the Client ID, Client Secret, and Redirect URI, you can make the authorization request.<br><strong>Example</strong><br>GET ../api/oauth2/auth with the following parameters:</p>\n<p>client_id: b81cc4de-d192-400e-bcb4-09254394c52a<br>redirect_url: <a href=\"https://www.mycompany.com/myapplication\">https://www.mycompany.com/myapplication</a><br>response_type: code (for the authorization code grant type)</p>\n<p><strong>Actual request:</strong></p>\n<p>GET <a href=\"https://staging.neon-soft.com/api/oauth2/auth?client_id=1127b9de5fe2361caa153b90c3962a13f0f0ed2b&amp;redirect_url=https://www.mycompany.com/myapplication&amp;response_type=code\">https://your_domain/api/oauth2/auth?client_id=&lt;</a>client_id&gt;<a href=\"https://staging.neon-soft.com/api/oauth2/auth?client_id=1127b9de5fe2361caa153b90c3962a13f0f0ed2b&amp;redirect_url=https://www.mycompany.com/myapplication&amp;response_type=code\">&amp;redirect_url=https://www.mycompany.com/myapplication&amp;response_type=code</a></p>\n<p>The Neon login screen will be displayed. The user can log in with their Neon credentials.<br>If the user didn’t grant access to this client before, a consent screen will be displayed, in which they can pass authorization to the client to access their Neon data.<br>When you have completed this step, a response is sent to the redirect URI with an authorization code.<br>This code is only valid for 30 minutes.<br>The domain of the Redirect URI must be the same as the Redirect URI that you registered in the app registration.<br><strong>Actual response:</strong><br><a href=\"https://www.mycompany.com/myapplication?code=XTzM!IAAAACbPTzQJXwFhM\">https://www.mycompany.com/myapplication?code=XTzM!IAAAACbPTzQJXwFhM</a>...</p>\n<p><strong>Error Responses:</strong><br>The following authorization errors can occur:</p>\n<p>The user is not recognized and has not been authenticated. For example when an incorrect redirect URI is sent in the request, the authorization server will not redirect the resource owner to the redirect URI.<br>The user authenticated correctly. In the case of an error the following error response is included in the redirect URI:<br><strong>error - displays a predefined error code.</strong><br><strong>error_description - displays a human-readable text describing the error.</strong></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"23831132","collectionId":"e0fa967b-02f0-4a88-bda2-f26930886238","publishedId":"2s9YsGhYH6","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-01-04T14:40:52.000Z"},"item":[{"name":"Get Token","id":"a16d7504-0c61-4962-a538-6252958abb32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"d49fd3a0db7e9be165402749d36c719d46077438","type":"default"},{"key":"redirect_url","value":"App redirect URL (https://example.com)","type":"default"},{"key":"grant_type","value":"authorization_code","type":"default"},{"key":"client_id","value":"Client ID (361c1fa119c3f5c9e8b85c286d)","type":"default"},{"key":"client_secret","value":"Client Secret (c1fa119c3f5c9e8b85c286d)","type":"default"}]},"url":"https://your_domain/api/oauth2/token","description":"<p>The authorization code returned in step 2 can be used once to obtain an access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"e0fa967b-02f0-4a88-bda2-f26930886238","id":"e0fa967b-02f0-4a88-bda2-f26930886238","name":"NEON APIs","type":"collection"}},"urlObject":{"protocol":"https","path":["api","oauth2","token"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"4d46561d-0526-4c77-bb69-bf0811e22c10","name":"Get Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"d49fd3a0db7e9be165402749d36c719d46077438","type":"default"},{"key":"redirect_url","value":"App redirect URL (https://example.com)","type":"default"},{"key":"grant_type","value":"authorization_code","type":"default"},{"key":"client_id","value":"Client ID (361c1fa119c3f5c9e8b85c286d)","type":"default"},{"key":"client_secret","value":"Client Secret (c1fa119c3f5c9e8b85c286d)","type":"default"}]},"url":"https://your_domain/api/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"AccessToken\": \"005f34d42c72694926ba4bf6cf48930f05a48e6c\",\n    \"RefreshToken\": \"04f96f09e2fd1508a41474a1440b6ac6\",\n    \"expires_in\": 600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"a16d7504-0c61-4962-a538-6252958abb32"},{"name":"Get Refresh Token","id":"dcbf1ce6-56db-4327-8833-2e62082a64bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"04f96f09e2fd1508a41474a1440b6ac6","type":"default"},{"key":"grant_type","value":"refresh_token","type":"default"},{"key":"client_id","value":"Client ID (361c1fa119c3f5c9e8b85c286d)","type":"default"},{"key":"client_secret","value":"Client Secret (c1fa119c3f5c9e8b85c286d)","type":"default"}]},"url":"https://your_domain/api/oauth2/token","description":"<p>Obtain new access tokens<br />When your access token expires, use the refresh token to obtain a new access token.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"e0fa967b-02f0-4a88-bda2-f26930886238","id":"e0fa967b-02f0-4a88-bda2-f26930886238","name":"NEON APIs","type":"collection"}},"urlObject":{"protocol":"https","path":["api","oauth2","token"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"1bb7495d-2528-47ff-afe7-d69998a6bae2","name":"Get Refresh Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"04f96f09e2fd1508a41474a1440b6ac6","type":"default"},{"key":"grant_type","value":"refresh_token","type":"default"},{"key":"client_id","value":"Client ID (361c1fa119c3f5c9e8b85c286d)","type":"default"},{"key":"client_secret","value":"Client Secret (c1fa119c3f5c9e8b85c286d)","type":"default"}]},"url":"https://your_domain/api/oauth2/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"AccessToken\": \"20520a4ae991ef597d355b9780704800262a93f5\",\n    \"RefreshToken\": \"f64c2d97b79445211f1ea7dfac72f62c\",\n    \"expires_in\": 600,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"dcbf1ce6-56db-4327-8833-2e62082a64bf"},{"name":"Add Account","event":[{"listen":"test","script":{"id":"d841ebd4-a120-4d06-a1ca-1cc9dcede9be","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"b709b179-ade3-4c70-ac44-20b7d9238f11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountName\": \"Test Account\",\r\n    \"Number\": \"1\", \r\n    \"CurrencyId\": 1,\r\n    \"Country\": \"United States\",\r\n    \"Owner\": 1,\r\n    \"FirstName\": \"john\",\r\n    \"LastName\": \"Doe\",\r\n    \"Website\": \"https://example.com\",\r\n    \"Phone\": \"03001234567\",\r\n    \"Fax\": \"0511234567\",\r\n    \"IsCustomer\": 1,\r\n    \"IsVendor\": 0,\r\n    \"IsReseller\": 0,\r\n    \"ResellerOwner\": 199,\r\n    \"Email\": \"johndoe@test.com\",\r\n    \"BillingEmail\": \"billing@test.com\",\r\n    \"VatNumber\": \"VAT-501\",\r\n    \"LanguageID\": 1,\r\n    \"NominalCode\": \"NOM-501\",\r\n    \"Description\": \"create account\",\r\n    \"Address1\": \"Street 1\",\r\n    \"Address2\": \"Block A\",\r\n    \"Address3\": \"Near Mall\",\r\n    \"City\": \"New York\",\r\n    \"PostCode\": \"46000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/create_account","description":"<p>type : POST<br />raw=&gt;JSON :</p>\n<p>Request Body Structure:</p>\n<p>Accepts a single record or an array of records</p>\n<p>CREATE ACCOUNT API</p>\n<p>COLUMNS:</p>\n<p>AccountName =&gt; string [required]</p>\n<p>Number =&gt; string/number [optional] – auto-generated if not provided</p>\n<p>CurrencyId =&gt; number [required]</p>\n<p>Country =&gt; string [required]</p>\n<p>Owner =&gt; number [required]</p>\n<p>FirstName =&gt; string [optional]</p>\n<p>LastName =&gt; string [optional]</p>\n<p>Website =&gt; string [optional]</p>\n<p>Phone =&gt; string [optional]</p>\n<p>Fax =&gt; string [optional]</p>\n<p>Email =&gt; string [optional]</p>\n<p>BillingEmail =&gt; string [optional]</p>\n<p>VatNumber =&gt; string [optional]</p>\n<p>NominalCode =&gt; string [optional]</p>\n<p>Description =&gt; string [optional]</p>\n<p>Address1 =&gt; string [optional]</p>\n<p>Address2 =&gt; string [optional]</p>\n<p>Address3 =&gt; string [optional]</p>\n<p>City =&gt; string [optional]</p>\n<p>PostCode =&gt; string [optional]</p>\n<p>IsCustomer =&gt; 0 or 1 [optional]</p>\n<p>IsVendor =&gt; 0 or 1 [optional]</p>\n<p>IsReseller =&gt; 0 or 1 [optional]</p>\n<p>ResellerOwner =&gt; number [optional]</p>\n","urlObject":{"protocol":"https","path":["api","v1","create_account"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"4d8087ad-1b77-4da9-a469-61761645ed73","name":"Create Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"AccountName\": \"Test Account\",\r\n    \"Number\": \"1\",\r\n    \"CurrencyId\": 1,\r\n    \"Country\": \"United States\",\r\n    \"Owner\": 1,\r\n    \"FirstName\": \"john\",\r\n    \"LastName\": \"Doe\",\r\n    \"Website\": \"https://example.com\",\r\n    \"Phone\": \"03001234567\",\r\n    \"Fax\": \"0511234567\",\r\n    \"IsCustomer\": 1,\r\n    \"IsVendor\": 0,\r\n    \"IsReseller\": 0,\r\n    \"ResellerOwner\": 199,\r\n    \"Email\": \"johndoe@test.com\",\r\n    \"BillingEmail\": \"billing@test.com\",\r\n    \"VatNumber\": \"VAT-501\",\r\n    \"LanguageID\": 1,\r\n    \"NominalCode\": \"NOM-501\",\r\n    \"Description\": \"create account\",\r\n    \"Address1\": \"Street 1\",\r\n    \"Address2\": \"Block A\",\r\n    \"Address3\": \"Near Mall\",\r\n    \"City\": \"New York\",\r\n    \"PostCode\": \"46000\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/create_account"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"message\": \"Account(s) created successfully.\",\r\n    \"account_ids\": [\r\n        1\r\n    ]\r\n}"}],"_postman_id":"b709b179-ade3-4c70-ac44-20b7d9238f11"},{"name":"Add Account Billing","id":"65d97b3d-7bba-4662-9586-c58a75fd896d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"BillingStartDate","value":"2024-09-21","type":"text"},{"key":"BillingClassID","value":"1","type":"text"},{"key":"BillingType","value":"Prepaid","type":"text"},{"key":"BillingCycleType","value":"Daily","type":"text"},{"key":"AccountID","value":"1","type":"text"}]},"url":"https://your_domainapi/v1/create_accountbilling","description":"<p><strong>type :</strong> POST<br /><strong>x-www-form-urlencoded :</strong></p>\n<p>Parameters:</p>\n<p>AccountID or AccountNumber=&gt; integer [required]<br />BillingStartDate =&gt; date [required]<br />BillingClassID =&gt; integer [required]<br />BillingType =&gt; string [required] [\"Prepaid\" or \"Postpaid\"]<br />BillingCycleType =&gt; string [required] (e.g., monthly, yearly)<br />BillingCycleValue =&gt; integer [optional]<br />SameDayInvoice =&gt; boolean [optional]</p>\n","urlObject":{"protocol":"https","path":["v1","create_accountbilling"],"host":["your_domainapi"],"query":[],"variable":[]}},"response":[{"id":"5762efe0-50f3-464d-a758-d57236a37bd9","name":"Create Account Billing","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"BillingStartDate","value":"2024-09-21","type":"text"},{"key":"BillingClassID","value":"1","type":"text"},{"key":"BillingType","value":"Prepaid","type":"text"},{"key":"BillingCycleType","value":"Daily","type":"text"},{"key":"AccountID","value":"1","type":"text"}]},"url":"https://your_domainapi/v1/create_accountbilling"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\"\n}"}],"_postman_id":"65d97b3d-7bba-4662-9586-c58a75fd896d"},{"name":"Add Account Payment Profile","id":"95c94314-f6fe-4508-87a3-63ee9c167873","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://your_domain/api/v1/insert_accountpaymentprofile?AccountID=22&PaymentGateway=Cardknox&xRefNum=2&xToken=8b49b4911ca94e0b94eb1080317a06b9a293cca3","description":"<p><strong>Parameters:</strong></p>\n<p>AccountID' =&gt;integer [required]<br />PaymentGateway =&gt;[required]<br />xRefNum =&gt;[required]<br />xToken =&gt; [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","insert_accountpaymentprofile"],"host":["your_domain"],"query":[{"key":"AccountID","value":"22"},{"key":"PaymentGateway","value":"Cardknox"},{"key":"xRefNum","value":"2"},{"key":"xToken","value":"8b49b4911ca94e0b94eb1080317a06b9a293cca3"}],"variable":[]}},"response":[{"id":"0ac5f1f1-783b-456b-b883-0c1e3669fc72","name":"Response-Insert Account Payment Profile","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://your_domain/api/v1/insert_accountpaymentprofile?AccountID=021&PaymentGateway=Cardknox&xRefNum=2&xToken=8b00k4911ca94e0b94eb1080317a06b9a000cca3","protocol":"https","host":["your_domain"],"path":["api","v1","insert_accountpaymentprofile"],"query":[{"key":"AccountID","value":"021"},{"key":"PaymentGateway","value":"Cardknox"},{"key":"xRefNum","value":"2"},{"key":"xToken","value":"8b00k4911ca94e0b94eb1080317a06b9a000cca3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"AccountPaymentProfileID\": 7\n}"}],"_postman_id":"95c94314-f6fe-4508-87a3-63ee9c167873"},{"name":"Add Account Payment Profile","id":"42aaf1d9-4756-4cfa-bb2a-10268a2b36c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"2","equals":true},{"key":"CardNumber","value":"4111111111111111","equals":true},{"key":"ExpirationMonth","value":"02","equals":true},{"key":"ExpirationYear","value":"2026","equals":true},{"key":"NameOnCard","value":"test card","equals":true},{"key":"CVVNumber","value":"124","equals":true}]},"url":"http://your_domain/api/v1/payment_method_profiles","description":"<p><strong>type :</strong> POST<br /><strong>x-www-form-urlencoded :</strong></p>\n<p><strong>Not Supported Gateways:</strong><br />Paypal, Sagepay, WireTransfer and Other</p>\n<p><strong>parameters</strong></p>\n<ul>\n<li><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</li>\n<li><strong>default</strong> =&gt; 1 [optional]</li>\n<li><strong>Title</strong> =&gt; string [optional]</li>\n</ul>\n<p><strong>IF Payment Gateway = [GoCardLess]</strong></p>\n<ul>\n<li>No Extra Params</li>\n</ul>\n<p><strong>IF Payment Gateway = [Stripe,AuthorizeNet,FideliPay,MerchantWarrior]</strong></p>\n<p>[required]</p>\n<ul>\n<li><strong>NameOnCard</strong> =&gt; string</li>\n<li><strong>CardNumber</strong> =&gt; digits (between:13,19 character)</li>\n<li><strong>ExpirationYear</strong> =&gt; Year format('yyyy')</li>\n<li><strong>ExpirationMonth</strong> =&gt; Year format('mm')</li>\n<li><strong>CVVNumber</strong> =&gt; string</li>\n</ul>\n<p><strong>IF Payment Gateway = [StripeACH,AuthorizeNetEcheck]</strong><br />[required] in StripeACH and [optional] in AuthorizeNetEcheck</p>\n<ul>\n<li><strong>AccountNumber</strong> =&gt; digits (between:6,19 character)</li>\n<li><strong>RoutingNumber</strong> =&gt; string</li>\n<li><strong>AccountHolderType</strong> =&gt; string (allowed values[savings,Checking])</li>\n<li><strong>AccountHolderName</strong> =&gt; string</li>\n</ul>\n<p><strong>IF Payment Gateway = [FastPay]</strong><br />[required]</p>\n<ul>\n<li><strong>AccountNumber</strong> =&gt; digits (between:6,19 character)</li>\n<li><strong>DDReference</strong> =&gt; string</li>\n<li><strong>SortCode</strong> =&gt; string</li>\n</ul>\n<p><strong>IF Payment Gateway = [SagePayDirectDebit]</strong><br />[required]</p>\n<ul>\n<li><strong>Title</strong> =&gt; string</li>\n<li><strong>AccountName</strong> =&gt; string</li>\n<li><strong>BankAccountName</strong> =&gt; string</li>\n<li><strong>AccountNumber</strong> =&gt; digits (between:2,11 character)</li>\n<li><strong>BranchCode</strong> =&gt; digits (length: 6)</li>\n<li><strong>AccountHolderType</strong> =&gt; digits (allowed values[1,2,3,4])<br />  (<br />  '1'=&gt;'Current / Checking',<br />  '2'=&gt;'Savings',<br />  '3'=&gt;'Transmission',<br />  '4'=&gt;'Bond',<br />  )</li>\n</ul>\n<p><strong>IF Payment Gateway = [MASAV]</strong><br />[required]</p>\n<ul>\n<li><strong>BranchNo</strong> =&gt; string</li>\n<li><strong>BankCode</strong> =&gt; string</li>\n<li><strong>BankAccount</strong> =&gt; string</li>\n</ul>\n<p><strong>IF Payment Gateway = [Forte]</strong><br />[required]</p>\n<ul>\n<li><strong>AccountNumber</strong> =&gt; digits</li>\n<li><strong>RoutingNumber</strong> =&gt; string</li>\n<li><strong>AccountHolderType</strong> =&gt; string (allowed values[Checking,savings])</li>\n<li><strong>AccountHolderName</strong> =&gt; string</li>\n</ul>\n<p><strong>IF Payment Gateway = [PeleCard]</strong><br />[required]</p>\n<ul>\n<li><strong>NameOnCard</strong> =&gt; string</li>\n<li><strong>CardNumber</strong> =&gt; digits (between:9,19 character)</li>\n<li><strong>ExpirationYear</strong> =&gt; Year format('yyyy')</li>\n<li><strong>ExpirationMonth</strong> =&gt; Year format('mm')<br />  [optional]</li>\n<li><strong>CVVNumber</strong> =&gt; string</li>\n<li><strong>PeleCardID</strong> =&gt; string</li>\n</ul>\n<p><strong>IF Payment Gateway = [Cardknox]</strong><br />[required]</p>\n<ul>\n<li><strong>NameOnCard</strong> =&gt; string</li>\n<li><strong>CardNumber</strong> =&gt; digits (between:9,19 character)</li>\n<li><strong>ExpirationYear</strong> =&gt; Year format('yyyy')</li>\n<li><strong>ExpirationMonth</strong> =&gt; month format('mm')</li>\n<li><strong>CVVNumber</strong> =&gt; string</li>\n</ul>\n","urlObject":{"protocol":"http","path":["api","v1","payment_method_profiles"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"433fa300-8fea-42c8-9846-d4b23f7ba5cb","name":"Add Account Payment Profile","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"2","equals":true},{"key":"CardNumber","value":"4111111111111111","equals":true},{"key":"ExpirationMonth","value":"02","equals":true},{"key":"ExpirationYear","value":"2026","equals":true},{"key":"NameOnCard","value":"test card","equals":true},{"key":"CVVNumber","value":"124","equals":true}]},"url":"http://your_domain/api/v1/payment_method_profiles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"message\": \"Payment Method Profile Successfully Created\"\r\n}\r\n"}],"_postman_id":"42aaf1d9-4756-4cfa-bb2a-10268a2b36c6"},{"name":"Add Balance","id":"adb87026-3abb-474b-8587-0749b77a53b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://your_domain/api/v1/add_balance?AccountID=9&AccountPaymentProfileID=49&Amount=200","description":"<p><strong>Parameters:</strong></p>\n<p>AccountID =&gt; integer [required]<br />AccountPaymentProfileID =&gt; integer [required_without:ExternalPaymentProfile]<br />ExternalPaymentProfile =&gt; text [required_without:AccountPaymentProfileID]<br />Amount =&gt; numeric [required]</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Any one is required from AccountPaymentProfileID and ExternalPaymentProfile.\n\n</code></pre>","urlObject":{"protocol":"https","path":["api","v1","add_balance"],"host":["your_domain"],"query":[{"key":"AccountID","value":"9"},{"key":"AccountPaymentProfileID","value":"49"},{"key":"Amount","value":"200"}],"variable":[]}},"response":[{"id":"f1a4f204-0885-423f-8073-7986058778d9","name":"Add Balance","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://your_domain/api/v1/add_balance?AccountID=010&AccountPaymentProfileID=04&Amount=200","protocol":"https","host":["your_domain"],"path":["api","v1","add_balance"],"query":[{"key":"AccountID","value":"010"},{"key":"AccountPaymentProfileID","value":"04"},{"key":"Amount","value":"200"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"InvoiceID\": 800005\n}"}],"_postman_id":"adb87026-3abb-474b-8587-0749b77a53b4"},{"name":"Add OneOffCharge","id":"d4967ee9-c3dd-402c-8658-bedf687ac944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://your_domain/api/v1/add_oneoffcharge?AccountID=2&ServiceID=1&ProductID=1&Description=DIV&Qty=1&Price=200&Date=2024-10-14 14:03:59","description":"<p><strong>Parameters:</strong></p>\n<p>AccountID =&gt; Required: Integer<br />ServiceID =&gt;Required: Integer<br />ProductID =&gt; Required: Integer<br />Description =&gt; Required<br />Qty =&gt; Required: Integer<br />Price =&gt; Required<br />Date =&gt; Required</p>\n","urlObject":{"protocol":"https","path":["api","v1","add_oneoffcharge"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"},{"key":"ServiceID","value":"1"},{"key":"ProductID","value":"1"},{"key":"Description","value":"DIV"},{"key":"Qty","value":"1"},{"key":"Price","value":"200"},{"key":"Date","value":"2024-10-14 14:03:59"}],"variable":[]}},"response":[{"id":"23fc33cc-d360-454d-b0f6-0791218ef8e2","name":"Response-Add OneOffCharge","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://your_domain/api/v1/add_oneoffcharge?AccountID=013&ServiceID=1&ProductID=1&Description=DIV&Qty=1&Price=200&Date=2024-10-14 14:03:59","protocol":"https","host":["your_domain"],"path":["api","v1","add_oneoffcharge"],"query":[{"key":"AccountID","value":"013"},{"key":"ServiceID","value":"1"},{"key":"ProductID","value":"1"},{"key":"Description","value":"DIV"},{"key":"Qty","value":"1"},{"key":"Price","value":"200"},{"key":"Date","value":"2024-10-14 14:03:59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"AccountOneOffChargeID\": 26\n}"}],"_postman_id":"d4967ee9-c3dd-402c-8658-bedf687ac944"},{"name":"Pay Invoice","id":"9d49da76-1096-4338-aaf8-f4d0bbb1776a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"1","type":"text"},{"key":"AccountPaymentProfileID","value":"1","type":"text"},{"key":"InvoiceIDs","value":"001","type":"text"}]},"url":"https://your-domain/api/v1/pay_invoice","description":"<p>AccountID=&gt; integer [required] AccountPaymentProfileID =&gt; integer [required] InvoiceIDs =&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","pay_invoice"],"host":["your-domain"],"query":[],"variable":[]}},"response":[{"id":"8a73a7b2-2a6f-401f-994b-f6583caac5e6","name":"Pay Invoice","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"1","type":"text"},{"key":"AccountPaymentProfileID","value":"1","type":"text"},{"key":"InvoiceIDs","value":"001","type":"text"}]},"url":"https://your-domain/api/v1/pay_invoice"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"message\": \"121 Invoices paid successfully.\"\r\n}"}],"_postman_id":"9d49da76-1096-4338-aaf8-f4d0bbb1776a"},{"name":"Pay Invoice + all Due","id":"a7c8a51d-0308-4eb1-a073-08111aea8f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://your_domain/api/v1/pay_invoice_due?AccountID=1&Type=pay_invoice&InvoiceIDs=91","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</li>\n<li><strong>Type</strong> =&gt; Required - <strong>values</strong>(pay_invoice,pay_all_due,pay_all_outstanding)</li>\n<li><strong>InvoiceIDs</strong> =&gt; Required if <strong>Type</strong> is <strong>pay_invoice</strong> - Integer</li>\n<li><strong>AccountPaymentProfileID</strong> =&gt; Optional - If blank then it will take default payment profile ID.</li>\n</ul>\n<p><strong>Note:</strong> For single Invoice payments, use Type value (pay_invoice)</p>\n<p>For all due Invoice Payment use Type value (pay_all_due)</p>\n","urlObject":{"protocol":"https","path":["api","v1","pay_invoice_due"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"},{"key":"Type","value":"pay_invoice"},{"key":"InvoiceIDs","value":"91"},{"disabled":true,"key":"AccountPaymentProfileID","value":""}],"variable":[]}},"response":[{"id":"13343cdc-9f13-4e66-8182-96988fa1428c","name":"Pay Invoice + all Due","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://your_domain/api/v1/pay_invoice_due?AccountID=1&Type=pay_invoice&InvoiceIDs=91","protocol":"https","host":["your_domain"],"path":["api","v1","pay_invoice_due"],"query":[{"key":"AccountID","value":"1"},{"key":"Type","value":"pay_invoice"},{"key":"InvoiceIDs","value":"91"},{"key":"AccountPaymentProfileID","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"message\": \"91 Invoices paid successfully.\"\r\n}\r\n"}],"_postman_id":"a7c8a51d-0308-4eb1-a073-08111aea8f6c"},{"name":"Update Account","id":"60be4b9e-f801-457b-a622-03fe116ceccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountID\": 20,\r\n    \"AccountName\": \"Updated Full Account\",\r\n    \"Owner\": 1,\r\n    \"FirstName\": \"Updated\",\r\n    \"LastName\": \"User\",\r\n    \"Website\": \"https://updated.com\",\r\n    \"Phone\": \"03111111111\",\r\n    \"Fax\": \"0519999999\",\r\n    \"IsCustomer\": 1,\r\n    \"IsVendor\": 0,\r\n    \"IsReseller\": 0,\r\n    \"ResellerOwner\": 10,\r\n    \"CurrencyId\": 1,\r\n    \"Country\": \"UNITED STATES\",\r\n    \"Email\": \"updated@test.com\",\r\n    \"BillingEmail\": \"billingupdated@test.com\",\r\n    \"VatNumber\": \"VAT-UPD\",\r\n    \"NominalCode\": \"NOM-UPD\",\r\n    \"Description\": \"Updated account test\",\r\n    \"Status\": 1,\r\n    \"Address1\": \"Updated Street\",\r\n    \"Address2\": \"Updated Block\",\r\n    \"Address3\": \"Updated Area\",\r\n    \"City\": \"New York\",\r\n    \"PostCode\": \"44000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/update_account","description":"<p>UPDATE ACCOUNT API</p>\n<p>IDENTIFIER (REQUIRED ONE):</p>\n<p>AccountID =&gt; number [optional]</p>\n<p>OR</p>\n<p>Number =&gt; string/number [optional]</p>\n<p>COLUMNS (UPDATE FIELDS):</p>\n<p>AccountName =&gt; string [optional]</p>\n<p>CurrencyId =&gt; number [optional]</p>\n<p>Country =&gt; string [optional]</p>\n<p>Owner =&gt; number [optional]</p>\n<p>FirstName =&gt; string [optional]</p>\n<p>LastName =&gt; string [optional]</p>\n<p>Website =&gt; string [optional]</p>\n<p>Phone =&gt; string [optional]</p>\n<p>Fax =&gt; string [optional]</p>\n<p>Email =&gt; string [optional]</p>\n<p>BillingEmail =&gt; string [optional]</p>\n<p>VatNumber =&gt; string [optional]</p>\n<p>LanguageID =&gt; number [optional]</p>\n<p>NominalCode =&gt; string [optional]</p>\n<p>Description =&gt; string [optional]</p>\n<p>Status =&gt; 0 or 1 [optional]</p>\n<p>Address1 =&gt; string [optional]</p>\n<p>Address2 =&gt; string [optional]</p>\n<p>Address3 =&gt; string [optional]</p>\n<p>City =&gt; string [optional]</p>\n<p>PostCode =&gt; string [optional]</p>\n<p>IsCustomer =&gt; 0 or 1 [optional]</p>\n<p>IsVendor =&gt; 0 or 1 [optional]</p>\n<p>IsReseller =&gt; 0 or 1 [optional]</p>\n<p>ResellerOwner =&gt; number [optional]</p>\n","urlObject":{"protocol":"https","path":["api","v1","update_account"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"ceee5903-a1e0-4df9-9348-b32c5c69b78a","name":"Update Account","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"AccountID\": 20,\r\n    \"AccountName\": \"Updated Full Account\",\r\n    \"Owner\": 1,\r\n    \"FirstName\": \"Updated\",\r\n    \"LastName\": \"User\",\r\n    \"Website\": \"https://updated.com\",\r\n    \"Phone\": \"03111111111\",\r\n    \"Fax\": \"0519999999\",\r\n    \"IsCustomer\": 1,\r\n    \"IsVendor\": 0,\r\n    \"IsReseller\": 0,\r\n    \"ResellerOwner\": 10,\r\n    \"CurrencyId\": 1,\r\n    \"Country\": \"UNITED STATES\",\r\n    \"Email\": \"updated@test.com\",\r\n    \"BillingEmail\": \"billingupdated@test.com\",\r\n    \"VatNumber\": \"VAT-UPD\",\r\n    \"NominalCode\": \"NOM-UPD\",\r\n    \"Description\": \"Updated account test\",\r\n    \"Status\": 1,\r\n    \"Address1\": \"Updated Street\",\r\n    \"Address2\": \"Updated Block\",\r\n    \"Address3\": \"Updated Area\",\r\n    \"City\": \"New York\",\r\n    \"PostCode\": \"44000\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/update_account"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"account_ids\": [\r\n        20\r\n    ]\r\n}"}],"_postman_id":"60be4b9e-f801-457b-a622-03fe116ceccb"},{"name":"Update Subscription","id":"6ff045ed-8b99-4b0a-9e22-ade8565229d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"AccountSubscriptionID\": 1,\r\n    \"ContractExpiryDate\": \"2026-12-31\",\r\n    \"InvoiceDescription\": \"test\",\r\n    \"YearlyFee\": 10,\r\n    \"QuarterlyFee\": 10,\r\n    \"MonthlyFee\": 10,\r\n    \"WeeklyFee\": 10,\r\n    \"DailyFee\": 10,\r\n    \"ActivationFee\": 10,\r\n    \"StartDate\": \"2026-01-01\",\r\n    \"EndDate\": \"2026-12-31\",\r\n    \"DiscountType\": \"Flat\",\r\n    \"DiscountAmount\": 10,\r\n    \"ExemptFromTax\": 1,\r\n    \"Term\": \"Monthly\",\r\n    \"TermType\": 1,\r\n    \"Provider\": \"test\",\r\n    \"ProviderFee\": 10,\r\n    \"ContractNotify\": 1,\r\n    \"Status\": 1\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/update_subscription","description":"<p>type: POST<br />raw =&gt; JSON</p>\n<p>Request Body Structure:<br />Accepts a single record or an array of records.</p>\n<p>Columns:<br />AccountSubscriptionID =&gt; number [required]<br />ContractExpiryDate =&gt; YYYY-MM-DD [optional]<br />InvoiceDescription =&gt; string [optional]<br />YearlyFee =&gt; number [optional]<br />QuarterlyFee =&gt; number [optional]<br />MonthlyFee =&gt; number [optional]<br />WeeklyFee =&gt; number [optional]<br />DailyFee =&gt; number [optional]<br />ActivationFee =&gt; number [optional]<br />StartDate =&gt; YYYY-MM-DD [optional]<br />EndDate =&gt; YYYY-MM-DD [optional]<br />DiscountType =&gt; Flat / Percentage [optional]<br />DiscountAmount =&gt; number [optional]<br />ExemptFromTax =&gt; 0 or 1 [optional]<br />Term =&gt; Daily / Weekly / Monthly / Yearly [optional]<br />TermType =&gt; number [optional]<br />Provider =&gt; string [optional]<br />ProviderFee =&gt; number [optional]<br />ContractNotify =&gt; 0 or 1 [optional]<br />Status =&gt; 0 or 1 [optional]</p>\n<p>Notes:<br />– At least one updatable field (besides AccountSubscriptionID) must be provided<br />– EndDate must be after StartDate<br />– All date fields must follow the format YYYY-MM-DD</p>\n","urlObject":{"protocol":"https","path":["api","v1","update_subscription"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"5558cb3d-ccbf-49bb-aa46-85aedac0d1e6","name":"Update Subscription","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"data\": {\r\n    \"AccountSubscriptionID\": 1,\r\n    \"ContractExpiryDate\": \"2026-12-31\",\r\n    \"InvoiceDescription\": \"test\",\r\n    \"YearlyFee\": 10,\r\n    \"QuarterlyFee\": 10,\r\n    \"MonthlyFee\": 10,\r\n    \"WeeklyFee\": 10,\r\n    \"DailyFee\": 10,\r\n    \"ActivationFee\": 10,\r\n    \"StartDate\": \"2026-01-01\",\r\n    \"EndDate\": \"2026-12-31\",\r\n    \"DiscountType\": \"Flat\",\r\n    \"DiscountAmount\": 10,\r\n    \"ExemptFromTax\": 1,\r\n    \"Term\": \"Monthly\",\r\n    \"TermType\": 1,\r\n    \"Provider\": \"test\",\r\n    \"ProviderFee\": 10,\r\n    \"ContractNotify\": 1,\r\n    \"Status\": 1\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/update_subscription"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"message\": \"Subscription(s) updated successfully.\",\r\n    \"subscription_ids\": [\r\n        1\r\n    ]\r\n}"}],"_postman_id":"6ff045ed-8b99-4b0a-9e22-ade8565229d3"},{"name":"Update Billing Address","id":"bbea76e4-cc25-4f2a-8f0e-8509d1729b69","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"2","type":"default"},{"key":"StreetAddress","value":"124 main street update","type":"default"},{"key":"Country","value":"USA","type":"default"},{"key":"State","value":"NY","type":"default"},{"key":"City","value":"City","type":"default"},{"key":"PostCode","value":"124","type":"default"}]},"url":"http://your_domain/api/v1/update_billing_address","description":"<p><strong>Parameters :</strong></p>\n<ul>\n<li><p><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</p>\n</li>\n<li><p><strong>StreetAddress</strong> =&gt; Required: string</p>\n</li>\n<li><p><strong>Country</strong> =&gt; Required: string</p>\n</li>\n<li><p><strong>State</strong> =&gt; Required: string</p>\n</li>\n<li><p><strong>City</strong> =&gt; Required: string</p>\n</li>\n<li><p><strong>PostCode</strong> =&gt; Required: numeric</p>\n</li>\n</ul>\n","urlObject":{"protocol":"http","path":["api","v1","update_billing_address"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"0b88f6d7-b1b5-421d-9913-b8fb61e8ae33","name":"Update Billing Address","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"2","type":"default"},{"key":"StreetAddress","value":"124 main street update","type":"default"},{"key":"Country","value":"USA","type":"default"},{"key":"State","value":"NY","type":"default"},{"key":"City","value":"City","type":"default"},{"key":"PostCode","value":"124","type":"default"}]},"url":"http://your_domain/api/v1/update_billing_address"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"result\": \"Billing Address updated successfully\"\r\n}\r\n"}],"_postman_id":"bbea76e4-cc25-4f2a-8f0e-8509d1729b69"},{"name":"Import subscription","id":"453423bb-752f-421f-a98d-3f2c190c9789","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"AddAccount\": 1,\r\n  \"data\": [\r\n    {\r\n      \"Account\": \"testABC\",\r\n      \"Service\": \"Test-01\",\r\n      \"Subscription\": \"Testing\",\r\n      \"StartDate\": \"2024-12-01\",\r\n      \"MonthlyFee\": \"70\",\r\n      \"Email\": \"test@example.com\",\r\n      \"Address1\": \"123\",\r\n      \"Address2\": \"234\",\r\n      \"Address3\": \"456\",\r\n      \"Discount\": \"Flat\",\r\n      \"DiscountAmount\": \"10\",\r\n      \"ExemptFromTax\": \"1\",\r\n      \"Term\": \"Monthly\",\r\n      \"ContractNotify\": \"1\",\r\n      \"Active\": \"1\",\r\n      \"InvoiceDescription\": \"123\",\r\n      \"Qty\": \"1\",\r\n      \"Provider\": \"test\",\r\n      \"ProviderFee\": 10,\r\n      \"ContractExpiryDate\": \"2025-12-31\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/import_subscriptions","description":"<p><strong>type :</strong> POST<br />raw=&gt;JSON :</p>\n<p><strong>Request Body Structure:</strong></p>\n<ul>\n<li><p>Accepts a single record or an array of records</p>\n</li>\n<li><p>AddAccount =&gt; <strong>0 or 1</strong> [optional] – default is 0</p>\n</li>\n</ul>\n<p>Columns:</p>\n<ul>\n<li><p>Account =&gt; <strong>string</strong> [required]</p>\n</li>\n<li><p>Service =&gt; <strong>string</strong> [required]</p>\n</li>\n<li><p>Subscription =&gt; <strong>string</strong> [required]</p>\n</li>\n<li><p>StartDate =&gt; <strong>YYYY-MM-DD</strong> [required]</p>\n</li>\n<li><p>ContractExpiryDate =&gt; <strong>YYYY-MM-DD</strong> [optional]</p>\n</li>\n<li><p>InvoiceDescription =&gt; <strong>string</strong> [required]</p>\n</li>\n<li><p>Qty =&gt; <strong>number</strong> [required]</p>\n</li>\n<li><p>MonthlyFee =&gt; <strong>number</strong> [required]</p>\n</li>\n<li><p>YearlyFee =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>QuarterlyFee =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>WeeklyFee =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>DailyFee =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>ActivationFee =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>Discount =&gt; <strong>Flat / Percentage</strong> [optional]</p>\n</li>\n<li><p>DiscountAmount =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>ExemptFromTax =&gt; <strong>0 or 1</strong> [optional]</p>\n</li>\n<li><p>Term =&gt; <strong>Daily / Weekly / Monthly / Yearly</strong> [optional]</p>\n</li>\n<li><p>TermType =&gt; <strong>number</strong> [optional]</p>\n</li>\n<li><p>ContractNotify =&gt; <strong>0 or 1</strong> [optional]</p>\n</li>\n</ul>\n<p>IF AddAccount=1 THEN PROVIDE THESE COLUMNS ALSO=&gt;</p>\n<ul>\n<li><p>Email =&gt; <strong>string</strong> [optional]</p>\n</li>\n<li><p>Address1 =&gt; <strong>string</strong> [optional]</p>\n</li>\n<li><p>Address2 =&gt; <strong>string</strong> [optional]</p>\n</li>\n<li><p>Address3 =&gt; <strong>string</strong> [optional]</p>\n</li>\n<li><p>City =&gt; <strong>string</strong> [optional]</p>\n</li>\n<li><p>Phone =&gt; <strong>string</strong> [optional]</p>\n</li>\n<li><p>Provider =&gt; string [optional]</p>\n</li>\n<li><p>ProviderFee =&gt; number [optional]</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","import_subscriptions"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"32acc4c1-fc4b-4156-9366-ef88b5694c20","name":"Import subscription","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"Account\": \"Test-Account\",\r\n    \"Service\": \"Test-01\",\r\n    \"Subscription\": \"Testing\",\r\n    \"StartDate\": \"2024-12-01\",\r\n    \"EndDate\": \"2024-12-31\",\r\n    \"ContractExpiryDate\": \"2025-12-31\",\r\n    \"MonthlyFee\": \"100\",\r\n    \"YearlyFee\": \"1200\",\r\n    \"QuarterlyFee\": \"300\",\r\n    \"WeeklyFee\": \"23\",\r\n    \"DailyFee\": \"3.3\",\r\n    \"Discount\": \"Percentage\",\r\n    \"DiscountAmount\": \"15\",\r\n    \"ExemptFromTax\": \"1\",\r\n    \"Term\": \"Yearly\",\r\n    \"TermType\": \"1\",\r\n    \"ContractNotify\": \"1\",\r\n    \"Active\": \"1\",\r\n    \"InvoiceDescription\": \"123\",\r\n    \"Provider\": \"test\",\r\n    \"ProviderFee\": 10,\r\n    \"Qty\": \"1\"\r\n  }\r\n]","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/import_subscription"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Subscriptions imported successfully.\"\n}"},{"id":"74d6e775-416d-4cd0-9929-6c532b485595","name":"Add Account Import subscription","originalRequest":{"method":"POST","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"body":{"mode":"raw","raw":"{\r\n  \"AddAccount\": 1,\r\n  \"data\": [\r\n    {\r\n      \"Account\": \"TEST\",\r\n      \"Service\": \"Test-01\",\r\n      \"Subscription\": \"Testing\",\r\n      \"StartDate\": \"2024-12-01\",\r\n      \"MonthlyFee\": \"70\",\r\n      \"Email\": \"test@example.com\",\r\n      \"Address1\": \"123\",\r\n      \"Address2\": \"234\",\r\n      \"Address3\": \"456\",\r\n      \"Discount\": \"Flat\",\r\n      \"DiscountAmount\": \"10\",\r\n      \"ExemptFromTax\": \"1\",\r\n      \"Term\": \"Monthly\",\r\n      \"ContractNotify\": \"1\",\r\n      \"Active\": \"1\",\r\n      \"InvoiceDescription\": \"123\",\r\n      \"Qty\": \"1\",\r\n      \"Provider\": \"test\",\r\n      \"ProviderFee\": 10,\r\n      \"ContractExpiryDate\": \"2025-12-31\"\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://your_domain/api/v1/import_subscription"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Jul 2025 10:32:35 GMT"},{"key":"Server","value":"Apache/2.4.57 (CentOS Stream) OpenSSL/3.2.2"},{"key":"X-Powered-By","value":"PHP/8.2.23"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Set-Cookie","value":"XSRF-TOKEN=eyJpdiI6IkZQa2QyMHdZSG9oNDZnb2k5SjJ6ZlE9PSIsInZhbHVlIjoibng4ZCtTc0cyMWJVdHI2SDFyOEE2ejhrN2FGODdlZTJiVkFVZmk4SjJLQWkvckxzZFFRQmFOcmNzbjhOeU51TWVNOFpnMStHeDE0dlFHQW5rVDZ1ejZzWHhZRmViRnlnRmJ6UU1vODhtaXZjTUsydUFpTUJWRytrTEZ6VUxwK1oiLCJtYWMiOiI3MGYwNTBiYTFlYmEzNTdjZThjN2NkOTZkZWYzZDkzNmEzOTc0ZDZjM2U5M2FmMTgyMWZhZGRiM2JlYzEzMDAxIiwidGFnIjoiIn0%3D; expires=Tue, 22 Jul 2025 12:32:35 GMT; Max-Age=7200; path=/; samesite=lax"},{"key":"Set-Cookie","value":"neonlocal_session=eyJpdiI6IlgwSHlaeDduTkgzU0tFeE5BT2FZVmc9PSIsInZhbHVlIjoiSlVvczdnRnQzeVR2NDlhL3pjZm1RdFIyc0ZCU2lQL05PbVRkTjBMR2hMTE5KWit2MzgrYUoxN0tDNXo3dWw4Y1BRaEdOSm55UDA0OVRLSWJReCswUkxhcnhmZmJJbDlEUkVLQUlTMHBYd3FwNHZqbkN0UVVvcWFVczdnRWZGYTAiLCJtYWMiOiI1MzM2NjQ5OTBlZTRjMjVjZjllYzYxYjM0NDdhYzU5NzU1OWM5N2QyZTRmN2QxNzJmMDJkNjRiZjhmZmNhNzY2IiwidGFnIjoiIn0%3D; expires=Tue, 22 Jul 2025 12:32:35 GMT; Max-Age=7200; path=/; httponly; samesite=lax"},{"key":"Vary","value":"Authorization"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"message\": \"Subscriptions imported successfully.\"\n}"}],"_postman_id":"453423bb-752f-421f-a98d-3f2c190c9789"},{"name":"Update subscription startdate","id":"309f31e2-1655-4440-a3b9-0ec2811f878b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"58","type":"text"},{"key":"StartDate","value":"2024-9-11","type":"text"}]},"url":"https://your_domain/api/v1/update_subscriptionstartdate","description":"<p><strong>type :</strong> POST<br /><strong>x-www-form-urlencoded :</strong>  </p>\n<p><strong>Parameters:</strong><br />AccountID or AccountNumber =&gt; integer [required]<br />StartDate=&gt; string [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","update_subscriptionstartdate"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"f4496c92-3e3e-4fac-8296-02041711df78","name":"Update subscription startdate","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"1","type":"text"},{"key":"StartDate","value":"2024-9-11","type":"text"}]},"url":"https://your_domain/api/v1/update_subscriptionstartdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\"\n}"}],"_postman_id":"309f31e2-1655-4440-a3b9-0ec2811f878b"},{"name":"Get Accounts list","id":"8d11f539-e0a1-440b-8a6e-1de8fec43478","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/account","description":"<p><strong>parameters</strong></p>\n<ul>\n<li><p><strong>sort_column</strong> =&gt; string [AccountName,AccountNumber]</p>\n</li>\n<li><p><strong>sort_order</strong> =&gt; string [asc, desc]</p>\n</li>\n<li><p><strong>page_number</strong> =&gt; integer (valid page number)<br />  <strong>[filter]</strong></p>\n</li>\n<li><p><strong>AccountName</strong> =&gt; string</p>\n</li>\n<li><p><strong>AccountNumber</strong> =&gt; string</p>\n</li>\n<li><p><strong>AccountID</strong>=&gt; Integer</p>\n</li>\n<li><p><strong>ResellerOwner</strong>=&gt; Integer</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","account"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"e8a03446-4fd3-46ff-9a32-53bd51647d97","name":"Get Accounts list","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"url":"https://your_domain/api/v1/account"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"TotalRecords\": 1,\r\n    \"RowsPerPage\": 1,\r\n    \"CurrentPage\": 1,\r\n    \"TotalPages\": 1,\r\n    \"results\": [\r\n        {\r\n            \"AccountID\": 231,\r\n            \"Number\": \"1\",\r\n            \"AccountName\": \"New Account\",\r\n            \"FirstName\": \"Test\",\r\n            \"LastName\": \"User\",\r\n            \"Phone\": \"01111111111\",\r\n            \"Email\": \"account@test.com\",\r\n            \"CurrencyCode\": \"USD\",\r\n            \"CurrencySymbol\": \"$\",\r\n            \"BillingType\": \"\",\r\n            \"Address1\": \"Street\",\r\n            \"Address2\": \"Block\",\r\n            \"Address3\": \"Area\",\r\n            \"City\": \"New York\",\r\n            \"State\": null,\r\n            \"PostCode\": \"00000\",\r\n            \"Country\": \"USA\",\r\n            \"Owner\": 1,\r\n            \"IsReseller\": 0,\r\n            \"ResellerOwner\": 2,\r\n            \"CurrencyId\": 1,\r\n            \"Website\": \"https://updated.com\",\r\n            \"Fax\": \"0519999999\",\r\n            \"IsCustomer\": 1,\r\n            \"IsVendor\": 0,\r\n            \"BillingEmail\": \"billing@test.com\",\r\n            \"VatNumber\": \"VAT-UPD\",\r\n            \"NominalCode\": \"NOM-UPD\",\r\n            \"Description\": \"account test\",\r\n            \"Status\": 1,\r\n            \"LanguageID\": 1,\r\n            \"created_at\": \"2026-05-05 08:58:25\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8d11f539-e0a1-440b-8a6e-1de8fec43478"},{"name":"Get Currency List","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{},"id":"85291356-6fe4-40e0-b84a-08923a000c1a"}}],"id":"5594b56c-b4b0-4e56-a7db-c213ed892297","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_currency_list ","urlObject":{"protocol":"https","path":["api","v1","get_currency_list "],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"4105c73b-ec01-4e2c-b009-44a83724e616","name":"Get Currency List","originalRequest":{"method":"GET","header":[],"url":"https://your_domain/api/v1/get_currency_list"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"Currencies\": [\r\n        {\r\n            \"CurrencyId\": 1,\r\n            \"name\": \"USD\"\r\n        },\r\n        {\r\n            \"CurrencyId\": 2,\r\n            \"name\": \"GBP\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"5594b56c-b4b0-4e56-a7db-c213ed892297"},{"name":"Get Country list","id":"2dc80472-9a27-4628-af28-4ae350ae725e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_country_list","urlObject":{"protocol":"https","path":["api","v1","get_country_list"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"863900c9-d870-4515-9014-9152029c0e27","name":"Get Country list","originalRequest":{"method":"GET","header":[],"url":"https://your_domain/api//v1/get_country_list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"Countries\": {\n        \"AF\": \"AFGHANISTAN\",\n        \"AL\": \"ALBANIA\",\n        \"DZ\": \"ALGERIA\",\n        \"AS\": \"AMERICAN SAMOA\",\n        \"AD\": \"ANDORRA\",\n        \"AO\": \"ANGOLA\",\n        \"AI\": \"ANGUILLA\",\n        \"AQ\": \"ANTARCTICA\",\n        \"AG\": \"ANTIGUA & BARBUDA\",\n        \"AR\": \"ARGENTINA\",\n        \"AM\": \"ARMENIA\",\n        \"AW\": \"ARUBA\",\n        \"\": \"INMARSAT BGAN SNAC\",\n        \"AU\": \"AUSTRALIA\",\n        \"AT\": \"AUSTRIA\",\n        \"AZ\": \"AZERBAIJAN\",\n        \"BS\": \"BAHAMAS\",\n        \"BH\": \"BAHRAIN\",\n        \"BD\": \"BANGLADESH\",\n        \"BB\": \"BARBADOS\",\n        \"BY\": \"BELARUS\",\n        \"BE\": \"BELGIUM\",\n        \"BZ\": \"BELIZE\",\n        \"BJ\": \"BENIN\",\n        \"BM\": \"BERMUDA\",\n        \"BT\": \"BHUTAN\",\n        \"BO\": \"BOLIVIA\",\n        \"BA\": \"BOSNIA & HERZEGOVINA\",\n        \"BW\": \"BOTSWANA\",\n        \"BR\": \"BRAZIL\",\n        \"VG\": \"BRITISH VIRGIN ISLANDS\",\n        \"BN\": \"BRUNEI DARUSSALAM\",\n        \"BG\": \"BULGARIA\",\n        \"BF\": \"BURKINA FASO\",\n        \"BI\": \"BURUNDI\",\n        \"KH\": \"CAMBODIA\",\n        \"CM\": \"CAMEROON\",\n        \"CA\": \"CANADA\",\n        \"CV\": \"CAPE VERDE\",\n        \"KY\": \"CAYMAN ISLANDS\",\n        \"CF\": \"CENTRAL AFRICAN REPUBLIC\",\n        \"TD\": \"CHAD\",\n        \"CL\": \"CHILE\",\n        \"CN\": \"CHINA\",\n        \"CO\": \"COLOMBIA\",\n        \"KM\": \"COMOROS\",\n        \"CG\": \"Republic of the Congo\",\n        \"CK\": \"COOK ISLANDS\",\n        \"CR\": \"COSTA RICA\",\n        \"SX\": \"SINT MAARTEN DUTCH PART\",\n        \"HR\": \"CROATIA\",\n        \"CU\": \"CUBA\",\n        \"CY\": \"CYPRUS\",\n        \"CZ\": \"CZECH REPUBLIC\",\n        \"CD\": \"DEM. REP. OF CONGO\",\n        \"DK\": \"DENMARK\",\n        \"DJ\": \"DJIBOUTI\",\n        \"DM\": \"DOMINICA\",\n        \"DO\": \"DOMINICAN REPUBLIC\",\n        \"TL\": \"TIMOR-LESTE\",\n        \"EC\": \"ECUADOR\",\n        \"EG\": \"EGYPT\",\n        \"SV\": \"EL SALVADOR\",\n        \"GQ\": \"EQUATORIAL GUINEA\",\n        \"ER\": \"ERITREA\",\n        \"EE\": \"ESTONIA\",\n        \"ET\": \"ETHIOPIA\",\n        \"FK\": \"FALKLAND ISLANDS\",\n        \"FO\": \"FAROE ISLANDS\",\n        \"FJ\": \"FIJI\",\n        \"FI\": \"FINLAND\",\n        \"FR\": \"FRANCE\",\n        \"GF\": \"FRENCH GUIANA\",\n        \"PF\": \"FRENCH POLYNESIA\",\n        \"GA\": \"GABON\",\n        \"GM\": \"GAMBIA\",\n        \"GE\": \"GEORGIA\",\n        \"DE\": \"GERMANY\",\n        \"GH\": \"GHANA\",\n        \"GI\": \"GIBRALTAR\",\n        \"GR\": \"GREECE\",\n        \"GL\": \"GREENLAND\",\n        \"GD\": \"GRENADA\",\n        \"GP\": \"GUADELOUPE\",\n        \"GU\": \"GUAM\",\n        \"GT\": \"GUATEMALA\",\n        \"GN\": \"GUINEA\",\n        \"GW\": \"GUINEA BISSAU\",\n        \"GY\": \"GUYANA\",\n        \"HT\": \"HAITI\",\n        \"HN\": \"HONDURAS\",\n        \"HK\": \"HONG KONG\",\n        \"HU\": \"HUNGARY\",\n        \"IS\": \"ICELAND\",\n        \"IN\": \"INDIA\",\n        \"ID\": \"INDONESIA\",\n        \"IR\": \"IRAN\",\n        \"IQ\": \"IRAQ\",\n        \"IE\": \"IRELAND\",\n        \"IL\": \"ISRAEL\",\n        \"IT\": \"ITALY\",\n        \"CI\": \"IVORY COAST\",\n        \"JM\": \"JAMAICA\",\n        \"JP\": \"JAPAN\",\n        \"JO\": \"JORDAN\",\n        \"KZ\": \"KAZAKHSTAN\",\n        \"KE\": \"KENYA\",\n        \"KI\": \"KIRIBATI\",\n        \"KW\": \"KUWAIT\",\n        \"KG\": \"KYRGYZSTAN\",\n        \"LA\": \"LAOS\",\n        \"LV\": \"LATVIA\",\n        \"LB\": \"LEBANON\",\n        \"LS\": \"LESOTHO\",\n        \"LR\": \"LIBERIA\",\n        \"LY\": \"LIBYAN ARAB JAMAHIRIYA\",\n        \"LI\": \"LIECHTENSTEIN\",\n        \"LT\": \"LITHUANIA\",\n        \"LU\": \"LUXEMBOURG\",\n        \"MO\": \"MACAU\",\n        \"MK\": \"MACEDONIA - THE FORMER YUGOSLAV REPUBLIC OF\",\n        \"MG\": \"MADAGASCAR\",\n        \"MW\": \"MALAWI\",\n        \"MY\": \"MALAYSIA\",\n        \"MV\": \"MALDIVES\",\n        \"ML\": \"MALI\",\n        \"MT\": \"MALTA\",\n        \"MH\": \"MARSHALL ISLANDS\",\n        \"MQ\": \"MARTINIQUE\",\n        \"MR\": \"MAURITANIA\",\n        \"MU\": \"MAURITIUS ISLAND\",\n        \"YT\": \"MAYOTTE\",\n        \"MX\": \"MEXICO\",\n        \"FM\": \"MICRONESIA - FEDERATED STATES OF\",\n        \"MD\": \"MOLDOVA\",\n        \"MC\": \"MONACO\",\n        \"MN\": \"MONGOLIA\",\n        \"ME\": \"Montenegro\",\n        \"MS\": \"MONTSERRAT\",\n        \"MA\": \"MOROCCO\",\n        \"MZ\": \"MOZAMBIQUE\",\n        \"MM\": \"MYANMAR (BURMA)\",\n        \"NA\": \"NAMIBIA\",\n        \"NR\": \"NAURU\",\n        \"NP\": \"NEPAL\",\n        \"NL\": \"NETHERLANDS\",\n        \"AN\": \"NETHERLANDS ANTILLES\",\n        \"NC\": \"NEW CALEDONIA\",\n        \"NZ\": \"NEW ZEALAND\",\n        \"NI\": \"NICARAGUA\",\n        \"NE\": \"NIGER\",\n        \"NG\": \"NIGERIA\",\n        \"NU\": \"NIUE ISLAND\",\n        \"KP\": \"NORTH KOREA\",\n        \"NO\": \"NORWAY\",\n        \"OM\": \"OMAN\",\n        \"PK\": \"PAKISTAN\",\n        \"PW\": \"PALAU\",\n        \"PS\": \"PALESTINIAN TERRITORY- OCCUPIED\",\n        \"PA\": \"PANAMA\",\n        \"PG\": \"PAPUA NEW GUINEA\",\n        \"PY\": \"PARAGUAY\",\n        \"PE\": \"PERU\",\n        \"PH\": \"PHILIPPINES\",\n        \"PL\": \"POLAND\",\n        \"PT\": \"PORTUGAL\",\n        \"PR\": \"Puerto Rico\",\n        \"QA\": \"QATAR\",\n        \"RE\": \"REUNION\",\n        \"RO\": \"ROMANIA\",\n        \"RU\": \"RUSSIAN FEDERATION\",\n        \"RW\": \"RWANDA\",\n        \"SM\": \"SAN MARINO\",\n        \"ST\": \"SAO TOME & PRINCIPE\",\n        \"SA\": \"SAUDI ARABIA\",\n        \"SN\": \"SENEGAL\",\n        \"RS\": \"SERBIA\",\n        \"SC\": \"SEYCHELLES\",\n        \"SL\": \"SIERRA LEONE\",\n        \"SG\": \"SINGAPORE\",\n        \"SK\": \"SLOVAKIA\",\n        \"SI\": \"SLOVENIA\",\n        \"SB\": \"SOLOMON ISLANDS\",\n        \"SO\": \"SOMALIA\",\n        \"ZA\": \"SOUTH AFRICA\",\n        \"KR\": \"SOUTH KOREA\",\n        \"SS\": \"South Sudan\",\n        \"ES\": \"SPAIN\",\n        \"LK\": \"SRI LANKA\",\n        \"SH\": \"ST. HELENA\",\n        \"KN\": \"ST. KITTS & NEVIS\",\n        \"LC\": \"ST. LUCIA\",\n        \"PM\": \"ST. PIERRE & MIQUELON\",\n        \"VC\": \"ST. VINCENT & GRENADINES\",\n        \"SD\": \"SUDAN\",\n        \"SR\": \"SURINAME\",\n        \"SZ\": \"SWAZILAND\",\n        \"SE\": \"SWEDEN\",\n        \"CH\": \"SWITZERLAND\",\n        \"SY\": \"SYRIA\",\n        \"TW\": \"TAIWAN - PROVINCE OF CHINA\",\n        \"TJ\": \"TAJIKISTAN\",\n        \"TZ\": \"Zanzibar\",\n        \"TH\": \"THAILAND\",\n        \"TG\": \"TOGO\",\n        \"TK\": \"TOKELAU\",\n        \"TO\": \"TONGA\",\n        \"TT\": \"TRINIDAD & TOBAGO\",\n        \"TN\": \"TUNISIA\",\n        \"TR\": \"TURKEY\",\n        \"TM\": \"TURKMENISTAN\",\n        \"TC\": \"TURKS AND CAICOS ISLANDS\",\n        \"TV\": \"TUVALU\",\n        \"VI\": \"U.S. VIRGIN ISLANDS\",\n        \"UG\": \"UGANDA\",\n        \"UA\": \"UKRAINE\",\n        \"AE\": \"UNITED ARAB EMIRATES\",\n        \"GB\": \"UNITED KINGDOM\",\n        \"UY\": \"URUGUAY\",\n        \"US\": \"USA\",\n        \"UZ\": \"Uzbekistan\",\n        \"VU\": \"VANUATU\",\n        \"VE\": \"VENEZUELA\",\n        \"VN\": \"VIETNAM\",\n        \"WF\": \"WALLIS & FUTUNA\",\n        \"WS\": \"WESTERN SAMOA\",\n        \"YE\": \"Yemen\",\n        \"ZM\": \"ZAMBIA\",\n        \"ZW\": \"ZIMBABWE\",\n        \"VA\": \"VATICAN CITY STATE\",\n        \"PN\": \"PITCAIRN ISLANDS\",\n        \"XK\": \"KOSOVO\",\n        \"CW\": \"CURACAO\",\n        \"CX\": \"CHRISTMAS ISLAND\",\n        \"NF\": \"Norfolk Island\",\n        \"BV\": \"BOUVET ISLAND\",\n        \"IO\": \"BRITISH INDIAN OCEAN TERRITORY\",\n        \"CC\": \"COCOS ISLANDS\",\n        \"GS\": \"SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS\",\n        \"UM\": \"UNITED STATES MINOR OUTLYING ISLANDS\",\n        \"EH\": \"WESTERN SAHARA\",\n        \"AX\": \"AALAND ISLANDS\",\n        \"BQ\": \"BONAIRE\",\n        \"MP\": \"NORTHERN MARIANA ISLANDS\",\n        \"TF\": \"French Southern Territories\",\n        \"GG\": \"Guernsey\",\n        \"MF\": \"SAINT MARTIN FRENCH PART\",\n        \"IM\": \"ISLE OF MAN\",\n        \"JE\": \"JERSEY\",\n        \"HM\": \"HEARD AND MCDONALD ISLANDS\",\n        \"SJ\": \"SVALBARD AND JAN MAYEN ISLANDS\"\n    }\n}"}],"_postman_id":"2dc80472-9a27-4628-af28-4ae350ae725e"},{"name":"Get User List","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","packages":{},"requests":{},"id":"867d44c5-c590-43c7-8355-90a47f6ebc77"}}],"id":"19ec6f89-c053-422a-8520-1412222154b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_user_list","urlObject":{"protocol":"https","path":["api","v1","get_user_list"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"c01b8d70-d0ae-41de-abd3-57ef1400d929","name":"Get User List","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"url":"https://your_domain/api/v1/get_user_list"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"Users\": [\r\n        {\r\n            \"UserID\": 1,\r\n            \"name\": \"Test 1\"\r\n        },\r\n        {\r\n            \"UserID\": 2,\r\n            \"name\": \"test 2\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"19ec6f89-c053-422a-8520-1412222154b6"},{"name":"Get Billing Address","id":"5ce6c14f-a68a-4ed7-b082-95ec34de8a4b","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_billing_address?AccountID=21","description":"<p><strong>Parameters :</strong></p>\n<ul>\n<li><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_billing_address"],"host":["your_domain"],"query":[{"key":"AccountID","value":"21"}],"variable":[]}},"response":[{"id":"d845bb1d-8fb9-4ffe-b8b3-516821a85dbf","name":"Get Billing Address","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"url":{"raw":"https://your_domain/api/v1/get_billing_address?AccountID=21","protocol":"https","host":["your_domain"],"path":["api","v1","get_billing_address"],"query":[{"key":"AccountID","value":"21"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"StreetAddress\": \"124 main street update\",\r\n    \"Country\": \"USA\",\r\n    \"State\": \"NY\",\r\n    \"City\": \"city\",\r\n    \"PostCode\": \"124\"\r\n}\r\n"}],"_postman_id":"5ce6c14f-a68a-4ed7-b082-95ec34de8a4b"},{"name":"Get billing Class List","id":"b149587f-1d0e-400a-aef6-eae5e81291ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_billingclasslist","urlObject":{"protocol":"https","path":["api","v1","get_billingclasslist"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"9a31bf62-0b20-4413-964d-851e497db428","name":"Get billing Class List","originalRequest":{"method":"GET","header":[],"url":"https://your_domain/api/v1/get_billingclasslist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    [\n        {\n            \"BillingClassID\": 1,\n            \"Name\": \"Default Billing Class SD\"\n        }\n    ]\n]"}],"_postman_id":"b149587f-1d0e-400a-aef6-eae5e81291ed"},{"name":"Get Account Subscriptions","id":"b52c19d3-85c2-47f7-80e6-c2e279b0ccd6","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_account_subscriptions?AccountID=2&sortOrder=desc","description":"<p><strong>Parameters :</strong></p>\n<ul>\n<li><p><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</p>\n</li>\n<li><p><strong>sortOrder</strong> =&gt; optional - string - [ desc | asc ] - deafult = asc</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_account_subscriptions"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"},{"key":"sortOrder","value":"desc"},{"disabled":true,"key":"","value":null}],"variable":[]}},"response":[{"id":"3ff4e8d4-becf-4730-a8c4-36fd5ab5a199","name":"Get Account Subscriptions","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"url":{"raw":"https://your_domain/api/v1/get_account_subscriptions?AccountID=2&sortOrder=desc","protocol":"https","host":["your_domain"],"path":["api","v1","get_account_subscriptions"],"query":[{"key":"AccountID","value":"2"},{"key":"sortOrder","value":"desc"},{"key":"","value":null,"disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"sortOrder\": \"desc\",\r\n    \"result\": [\r\n        {\r\n            \"AccountSubscriptionID\": 5,\r\n            \"Name\": \"Subscription 1\",\r\n            \"Description\": \"WT Superfast Fibre\",\r\n            \"Qty\": 1,\r\n            \"StartDate\": \"2022-02-08\",\r\n            \"MonthlyFee\": \"57.18\",\r\n            \"AnnuallyFee\": \"686.20\"\r\n        },\r\n        {\r\n            \"AccountSubscriptionID\": 4,\r\n            \"Name\": \"Subscription 1\",\r\n            \"Description\": \"WT Superfast Fibre\",\r\n            \"Qty\": 1,\r\n            \"StartDate\": \"2022-02-08\",\r\n            \"MonthlyFee\": \"57.18\",\r\n            \"AnnuallyFee\": \"686.20\"\r\n        }\r\n    ]\r\n}\r\n"}],"_postman_id":"b52c19d3-85c2-47f7-80e6-c2e279b0ccd6"},{"name":"Get Account Payment","id":"d8f53299-2afb-464d-993d-b6164512f433","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_account_payment?AccountID=2","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li><p><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</p>\n</li>\n<li><p><strong>sort_column</strong> =&gt; string [InvoiceNumber,Status,PaymentDate]</p>\n</li>\n<li><p><strong>sort_order</strong> =&gt; string [asc, desc]</p>\n</li>\n<li><p><strong>page_number</strong> =&gt; integer (valid page number)<br />  <strong>[filter]</strong></p>\n</li>\n<li><p><strong>InvoiceNumber</strong> =&gt; string</p>\n</li>\n<li><p><strong>FromDate</strong> =&gt; date_time (Y-m-d H:i:s)</p>\n</li>\n<li><p><strong>ToDate</strong> =&gt; date_time (Y-m-d H:i:s)</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_account_payment"],"host":["your_domain"],"query":[{"disabled":true,"key":"","value":null},{"key":"AccountID","value":"2"}],"variable":[]}},"response":[{"id":"2306f360-e5d2-4307-9131-b11884566283","name":"Get Account Payment","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"url":{"raw":"https://your_domain/api/v1/get_account_payment?AccountID=2","protocol":"https","host":["your_domain"],"path":["api","v1","get_account_payment"],"query":[{"key":"","value":null,"disabled":true},{"key":"AccountID","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"TotalRecords\": 4,\r\n    \"RowsPerPage\": 50,\r\n    \"CurrentPage\": 1,\r\n    \"TotalPages\": 1,\r\n    \"results\": [\r\n        {\r\n            \"PaymentID\": 14728,\r\n            \"AccountName\": \"Test Account\",\r\n            \"AccountID\": 2,\r\n            \"Amount\": \"7.000\",\r\n            \"PaymentDate\": \"2021-08-05 13:07:24\",\r\n            \"Status\": \"Approved\",\r\n            \"InvoiceNo\": \"WT526756\",\r\n            \"PaymentMethod\": \"BANK TRANSFER\",\r\n            \"Notes\": \"GoCardLess transaction_id 12345test\",\r\n            \"AmountWithSymbol\": \"€7.000\"\r\n        },\r\n        {\r\n            \"PaymentID\": 14729,\r\n            \"AccountName\": \"Test Account\",\r\n            \"AccountID\": 2,\r\n            \"Amount\": \"7.000\",\r\n            \"PaymentDate\": \"2021-08-05 13:37:14\",\r\n            \"Status\": \"Approved\",\r\n            \"InvoiceNo\": \"WT526759\",\r\n            \"PaymentMethod\": \"BANK TRANSFER\",\r\n            \"Notes\": \"GoCardLess transaction_id PM0012345\",\r\n            \"AmountWithSymbol\": \"€7.000\"\r\n        }\r\n    ]\r\n}\r\n"}],"_postman_id":"d8f53299-2afb-464d-993d-b6164512f433"},{"name":"Get Account Invoice","id":"5ef079e9-6a22-4614-9419-54a6cfe07d39","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_account_invoices?AccountID=2","description":"<p><strong>parameters</strong></p>\n<ul>\n<li><p><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</p>\n</li>\n<li><p><strong>sort_column</strong> =&gt; string [InvoiceNumber,IssueDate]</p>\n</li>\n<li><p><strong>sort_order</strong> =&gt; string [asc, desc]</p>\n</li>\n<li><p><strong>page_number</strong> =&gt; integer (valid page number)<br />  <strong>[filter]</strong></p>\n</li>\n<li><p><strong>InvoiceNumber</strong> =&gt; string</p>\n</li>\n<li><p><strong>IssueDateStart</strong> =&gt; date (Y-m-d)</p>\n</li>\n<li><p><strong>IssueDateEnd</strong> =&gt; date (Y-m-d)</p>\n</li>\n<li><p><strong>Overdue</strong> =&gt; boolean [true,false]</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_account_invoices"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"}],"variable":[]}},"response":[{"id":"482a5bbf-0b58-45ec-8ae6-4449a727fa9d","name":"Get Account Invoice","originalRequest":{"method":"GET","header":[{"key":"authorization","value":"Bearer 9ab698d1e0045333154ee888cc0689b81f603fa0","type":"default","disabled":true}],"url":{"raw":"https://your_domain/api/v1/get_account_invoices?AccountID=2","protocol":"https","host":["your_domain"],"path":["api","v1","get_account_invoices"],"query":[{"key":"AccountID","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"TotalRecords\": 10,\r\n    \"RowsPerPage\": 50,\r\n    \"CurrentPage\": 1,\r\n    \"TotalPages\": 1,\r\n    \"results\": [\r\n        {\r\n            \"AccountName\": \"Qaiser Test\",\r\n            \"InvoiceNumber\": \"2\",\r\n            \"IssueDate\": \"2017-12-05 00:00:00\",\r\n            \"InvoicePeriod\": \"2017-10-16 - 2017-10-31\",\r\n            \"GrandTotal\": \"€122.95\",\r\n            \"PendingAmount\": \"€0.00/122.95\",\r\n            \"InvoiceStatus\": \"awaiting\",\r\n            \"DueDate\": \"2017-12-10\",\r\n            \"DueDays\": \"2207\",\r\n            \"InvoiceID\": 2,\r\n            \"Description\": null,\r\n            \"Attachment\": null,\r\n            \"AccountID\": 2,\r\n            \"OutstandingAmount\": \"€122.95\",\r\n            \"ItemInvoice\": null,\r\n            \"BillingEmail\": \"\",\r\n            \"CreditNoteAmount\": \"€0.00\",\r\n            \"Notes\": 0,\r\n            \"IsOverdue\": 0,\r\n            \"InvoiceURL\": \"http://localhost/web/public/invoice/2-2/cview\",\r\n            \"DownloadInvoiceURL\": \"http://localhost/web/public/invoice/download_invoice/2\"\r\n        },\r\n    ]\r\n}"}],"_postman_id":"5ef079e9-6a22-4614-9419-54a6cfe07d39"},{"name":"Get Account Billing Details","id":"9cfe42e4-2bb1-4620-bac9-fcb402c03ab5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_account_billing_details?AccountID=2","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li><p><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</p>\n</li>\n<li><p><strong>Startdate</strong> =&gt; Optional - format (2024-01-30)</p>\n</li>\n<li><p><strong>Enddate</strong> =&gt; Optional - format (2024-01-30)</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_account_billing_details"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"}],"variable":[]}},"response":[{"id":"07d23917-d8e2-4712-85ef-6a2d9042073c","name":"Get Account Billing Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/get_account_billing_details?AccountID=2","protocol":"https","host":["your_domain"],"path":["api","v1","get_account_billing_details"],"query":[{"key":"AccountID","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"result\": {\r\n        \"Outstanding\": \"1096.940\",\r\n        \"TotalPaymentsIn\": \"121.000\",\r\n        \"TotalPaymentsOut\": \"71.000\",\r\n        \"TotalInvoiceIn\": \"0.000\",\r\n        \"TotalInvoiceOut\": \"1146.940\",\r\n        \"TotalDueAmount\": \"1046.940\",\r\n        \"TotalOverdueAmount\": \"46.608\",\r\n        \"TotalPaidAmount\": \"0.000\",\r\n        \"TotalDispute\": \"0.000\",\r\n        \"TotalEstimate\": \"0.000\",\r\n        \"TotalUnbillidAmount\": \"0.000\"\r\n    }\r\n}\r\n"}],"_postman_id":"9cfe42e4-2bb1-4620-bac9-fcb402c03ab5"},{"name":"Get Account Payment Profile","id":"cf2d8fdd-def3-4497-b2c5-b7a481adba61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_account_payment_profile?AccountID=2","description":"<p><strong>Parameters</strong></p>\n<ul>\n<li><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_account_payment_profile"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"}],"variable":[]}},"response":[{"id":"6e8aade7-e5b1-42c2-8282-7d989fa6a92f","name":"Get Account Payment Profile","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/get_account_payment_profile?AccountID=2","protocol":"https","host":["your_domain"],"path":["api","v1","get_account_payment_profile"],"query":[{"key":"AccountID","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"AccountPaymentProfileID\": 118,\r\n    \"PaymentGatewayName\": \"Cardknox\",\r\n    \"Title\": \"Qaiser\",\r\n    \"Status\": 1,\r\n    \"Last4Digit\": \"1111\",\r\n    \"isDefault\": 1\r\n    \"CardDetails\": {\r\n        \"NameOnCard\": \"test\",\r\n        \"CardNumber\": \"1111\",\r\n        \"ExpirationYear\": \"2026\",\r\n        \"ExpirationMonth\": \"02\"\r\n    }\r\n}\r\n"}],"_postman_id":"cf2d8fdd-def3-4497-b2c5-b7a481adba61"},{"name":"Get Statement of Account","id":"c957b11f-0f87-4c76-9e17-60740cb34f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/get_statement_of_account?AccountID=2","description":"<p><strong>Parameters :</strong></p>\n<ul>\n<li><p><strong>AccountID or AccountName or AccountNumber</strong> =&gt; Required Any on</p>\n</li>\n<li><p><strong>Startdate</strong> =&gt; Optional - format (2024-01-30)</p>\n</li>\n<li><p><strong>Enddate</strong> =&gt; Optional - format (2024-01-30)</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v1","get_statement_of_account"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"}],"variable":[]}},"response":[{"id":"f00eae69-0f0b-4881-839b-e3b4b0803fae","name":"Get Statement of Account","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/get_statement_of_account?AccountID=2","protocol":"https","host":["your_domain"],"path":["api","v1","get_statement_of_account"],"query":[{"key":"AccountID","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\r\n    {\r\n        \"result\": [\r\n            {\r\n                \"InvoiceOut_InvoiceNo\": \"7150\",\r\n                \"InvoiceOut_PeriodCover\": \"01/12/2023 31/12/2023\",\r\n                \"InvoiceOut_Amount\": \"297.43\",\r\n                \"InvoiceOut_DisputeAmount\": \"\",\r\n                \"InvoiceOut_DisputeID\": null,\r\n                \"PaymentIn_PeriodCover\": \"\",\r\n                \"PaymentIn_Amount\": \"\",\r\n                \"PaymentIn_PaymentID\": \"\"\r\n            }\r\n        ],\r\n        \"InvoiceOutAmountTotal\": \"6,758.32\",\r\n        \"PaymentInAmountTotal\": \"5,896.03\",\r\n        \"InvoiceInAmountTotal\": \"0.00\",\r\n        \"PaymentOutAmountTotal\": \"0.00\",\r\n        \"InvoiceOutDisputeAmountTotal\": \"0.00\",\r\n        \"InvoiceInDisputeAmountTotal\": \"0.00\",\r\n        \"CompanyBalance\": \"0.00\",\r\n        \"AccountBalance\": \"862.29\",\r\n        \"OffsetBalance\": \"862.29\",\r\n        \"BroughtForwardOffset\": \"0.00\",\r\n        \"CurencySymbol\": \"$\",\r\n        \"roundplaces\": 2\r\n    }\r\n]\r\n"}],"_postman_id":"c957b11f-0f87-4c76-9e17-60740cb34f87"},{"name":"Get External payment forms","id":"45896990-1b69-41a5-bab7-407381fa2c39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"http://your_domain/api/v1/external_payment_forms?AccountID=1&InvoiceID=1","description":"<p>Parameters:<br />AccountID =&gt; integer [required]<br />InvoiceID=&gt; integer [required]</p>\n","urlObject":{"protocol":"http","path":["api","v1","external_payment_forms"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"},{"key":"InvoiceID","value":"1"}],"variable":[]}},"response":[{"id":"2fe8e8af-5908-4b5a-8734-7a095b9c1fe9","name":"External payment forms","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://your_domain/api/v1/external_payment_forms?AccountID=1&InvoiceID=1","protocol":"http","host":["your_domain"],"path":["api","v1","external_payment_forms"],"query":[{"key":"AccountID","value":"1"},{"key":"InvoiceID","value":"1"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"Paypal\": \"<form method=\\\"post\\\" id=\\\"pyapalform\\\" action=\\\"https://www.sandbox.paypal.com/cgi-bin/webscr\\\" target=\\\"_self\\\" class=\\\"no-margin\\\" >\\n        <input type=\\\"hidden\\\" name=\\\"business\\\" value=\\\"vishal.jagani-facilitator@code-desk.com\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"return\\\" value=\\\"https://stagingdev.neon-soft.com/invoice_thanks/01-0001\\\" />\\n        <input type=\\\"hidden\\\" name=\\\"cancel_url\\\" value=\\\"https://stagingdev.neon-soft.com/paypal_cancel/01-0001\\\" />\\n        <input type=\\\"hidden\\\" name=\\\"notify_url\\\" value=\\\"https://stagingdev.neon-soft.com/paypal_ipn/single/01-0001/0\\\" />\\n        <input type=\\\"hidden\\\" name=\\\"item_name\\\" value=\\\"Staging Dev Company Invoice #Inv_67\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"item_number\\\" value=\\\"Inv_67\\\" />\\n        <input type=\\\"hidden\\\" name=\\\"quantity\\\" value=\\\"1\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"amount\\\" value=\\\"207.41\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"custom\\\" value=\\\"\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"currency_code\\\" value=\\\"USD\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"image_url\\\" value=\\\"https://s3-us-west-2.amazonaws.com/neon.staging/1/ThemeImages/2018/07/16/download1.png?response-content-disposition=attachment%3B%20filename%3D%22download1.png%22&AWSAccessKeyId=AKIAJGYWMS3EN7GVI27Q&Expires=1534403231&Signature=6BnS1hFYrQN1LW86CbkkCKEkKEY%3D\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"rm\\\" value=\\\"2\\\"/>\\n        <input type=\\\"hidden\\\" name=\\\"cmd\\\" value=\\\"_xclick\\\"/>\\n        <button type=\\\"submit\\\" class=\\\"pull-right  btn btn-sm btn-danger btn-icon icon-left hidden-print\\\" style=\\\"display:none;\\\"> <i class=\\\"entypo-credit-card\\\"></i> Pay Now With Paypal</button>\\n        </form>\"\n    }\n}"}],"_postman_id":"45896990-1b69-41a5-bab7-407381fa2c39"},{"name":"Get Invoice","id":"cb58fe5b-e132-4ed4-b1ba-ba38f5b992bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/invoice?AccountID=1","description":"<p><strong>Filter:</strong></p>\n<p><strong>InvoiceNumber</strong> =&gt; string [optional]<br />sort_column =&gt; string [InvoiceNumber, IssueDate] [optional]<br />sort_order =&gt; string [asc, desc, Default: asc] [optional]</p>\n<p><strong>page_number</strong> =&gt; integer (valid page number, Default: 1) [optional]<br /><strong>IssueDateStart</strong> =&gt; date [optional]<br /><strong>IssueDateEnd</strong> =&gt; date [optional]<br /><strong>Overdue</strong> =&gt; boolean [optional]=&gt; [true for overdue, false for non-overdue]</p>\n<p><strong>Parameters:</strong><br />AccountID =&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","invoice"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"}],"variable":[]}},"response":[{"id":"c1f26bec-11c2-438d-a873-f2a84e5a368e","name":"Get Invoice","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/invoice?AccountID=1","protocol":"https","host":["your_domain"],"path":["api","v1","invoice"],"query":[{"key":"AccountID","value":"1"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalRecords\": 1,\n    \"RowsPerPage\": 50,\n    \"CurrentPage\": \"1\",\n    \"TotalPages\": 1,\n    \"results\": [\n        {\n            \"AccountName\": \"Account-1\",\n            \"InvoiceNumber\": \"Inv_01\",\n            \"IssueDate\": \"2024-06-11 00:00:00\",\n            \"InvoicePeriod\": \"\",\n            \"GrandTotal\": \"$63.50\",\n            \"PendingAmount\": \"$63.50/0.00\",\n            \"InvoiceStatus\": \"paid\",\n            \"DueDate\": \"2024-06-12\",\n            \"DueDays\": \"\",\n            \"InvoiceID\": 1,\n            \"Description\": null,\n            \"Attachment\": null,\n            \"AccountID\": 1,\n            \"OutstandingAmount\": \"$0.00\",\n            \"ItemInvoice\": 1,\n            \"BillingEmail\": \"Test123@gmail.com\",\n            \"CreditNoteAmount\": \"$0.00\",\n            \"Notes\": 18,\n            \"IsOverdue\": 0,\n            \"InvoiceURL\": \"https://your_domain/invoice/1-0001/cview\",\n            \"DownloadInvoiceURL\": \"https://your_domain/invoice/download_invoice/0001\"\n        }\n    ]\n}"}],"_postman_id":"cb58fe5b-e132-4ed4-b1ba-ba38f5b992bd"},{"name":"Get Payment Method Profiles","id":"6a2ab4a6-44e3-4432-8455-af9a7355fb0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/payment_method_profiles?AccountID=08","description":"<p><strong>Parameters:</strong><br />sort_column =&gt; string [Status,Default]<br />sort_order =&gt; string [asc, desc]<br />page_number =&gt; integer (valid page number)</p>\n<p><strong>Filter:</strong><br />AccountID =&gt; integer [required]<br />Status =&gt; integer [optional] [0=&gt;inactive, 1=active, any other or blank value =&gt; All]</p>\n","urlObject":{"protocol":"https","path":["api","v1","payment_method_profiles"],"host":["your_domain"],"query":[{"key":"AccountID","value":"08"}],"variable":[]}},"response":[{"id":"83d78e71-26e4-442e-a050-8e834b3e2c76","name":"Get Payment Method Profiles","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/payment_method_profiles?AccountID=010","protocol":"https","host":["your_domain"],"path":["api","v1","payment_method_profiles"],"query":[{"key":"AccountID","value":"010"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalRecords\": 4,\n    \"RowsPerPage\": 50,\n    \"CurrentPage\": 1,\n    \"TotalPages\": 1,\n    \"results\": [\n        {\n            \"Title\": \"UK\",\n            \"Status\": 0,\n            \"isDefault\": 0,\n            \"GatewayName\": \"Stripe\",\n            \"created_at\": \"2024-10-16 11:34:03\",\n            \"AccountPaymentProfileID\": 54\n        },\n        {\n            \"Title\": \"test\",\n            \"Status\": 1,\n            \"isDefault\": 0,\n            \"GatewayName\": \"Stripe\",\n            \"created_at\": \"2024-10-11 10:30:29\",\n            \"AccountPaymentProfileID\": 45\n        },\n        {\n            \"Title\": \"Last test\",\n            \"Status\": 1,\n            \"isDefault\": 1,\n            \"GatewayName\": \"Stripe\",\n            \"created_at\": \"2024-10-16 11:32:12\",\n            \"AccountPaymentProfileID\": 53\n        },\n        {\n            \"Title\": \"\",\n            \"Status\": 1,\n            \"isDefault\": 0,\n            \"GatewayName\": \"Stripe\",\n            \"created_at\": \"2024-10-18 10:43:26\",\n            \"AccountPaymentProfileID\": 64\n        }\n    ]\n}"}],"_postman_id":"6a2ab4a6-44e3-4432-8455-af9a7355fb0a"},{"name":"Get last_Invoice_value","id":"bc18384c-05fe-4fc0-a362-0cdd2cb88f85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/last_invoice_value?AccountID=1","description":"<p><strong>Parameters:</strong><br />AccountID =&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","last_invoice_value"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"}],"variable":[]}},"response":[{"id":"18c7a922-466a-46bc-94c0-bceed4684102","name":"last_Invoice_value","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/last_invoice_value?AccountID=1","protocol":"https","host":["your_domain"],"path":["api","v1","last_invoice_value"],"query":[{"key":"AccountID","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"LastInvoiceValue\": \"113.50\",\n    \"InvoiceURL\": \"https://your_domain/invoice/1-0001/cview\",\n    \"DownloadInvoiceURL\": \"https://your_domain/invoice/download_invoice/0001\",\n    \"IssueDate\": \"2024-07-01\"\n}"}],"_postman_id":"bc18384c-05fe-4fc0-a362-0cdd2cb88f85"},{"name":"Get Account Balance","id":"ad17a712-fbd3-4417-aab1-c355e5ce5a48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/account_balance?AccountID=2","description":"<p><strong>Parameters:</strong></p>\n<p><strong>AccountID</strong> =&gt; AccountID OR AccountNumber is required.</p>\n","urlObject":{"protocol":"https","path":["api","v1","account_balance"],"host":["your_domain"],"query":[{"key":"AccountID","value":"2"}],"variable":[]}},"response":[{"id":"c6cae22d-e2f1-439b-b148-b153c7b06d06","name":"Get Account Balance","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/account_balance?AccountID=021","protocol":"https","host":["your_domain"],"path":["api","v1","account_balance"],"query":[{"key":"AccountID","value":"021"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\r\n    \"SOA_Amount\": \"53.20\"\r\n}"}],"_postman_id":"ad17a712-fbd3-4417-aab1-c355e5ce5a48"},{"name":"Get Payment","id":"88ee5200-862b-42fe-bcee-5a8ccc2ca84f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/payment?AccountID=1&InvoiceNumber=Inv_19&FromDate=2024-06-13 12:42:48&ToDate=2024-06-13 12:42:48","description":"<p><strong>Parameters:</strong><br />sort_column =&gt; string [InvoiceNumber,Status,PaymentDate]<br />sort_order =&gt; string [asc, desc]<br />page_number =&gt; integer (valid page number)</p>\n<p><strong>Filter:</strong><br />AccountID =&gt; integer (valid AccountID)<br />InvoiceNumber =&gt; string<br />FromDate =&gt; date_time (Y-m-d H:i:s)<br />ToDate =&gt; date_time (Y-m-d H:i:s)</p>\n","urlObject":{"protocol":"https","path":["api","v1","payment"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"},{"key":"InvoiceNumber","value":"Inv_19"},{"key":"FromDate","value":"2024-06-13 12:42:48"},{"key":"ToDate","value":"2024-06-13 12:42:48"}],"variable":[]}},"response":[{"id":"9edbd24a-d513-426c-9dd9-b5b2583ed185","name":"Get Payment","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/payment?AccountID=010&InvoiceNumber=Inv_00&FromDate=2024-06-13 12:42:48&ToDate=2024-06-13 12:42:48","protocol":"https","host":["your_domain"],"path":["api","v1","payment"],"query":[{"key":"AccountID","value":"010"},{"key":"InvoiceNumber","value":"Inv_00"},{"key":"FromDate","value":"2024-06-13 12:42:48"},{"key":"ToDate","value":"2024-06-13 12:42:48"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalRecords\": 1,\n    \"RowsPerPage\": 50,\n    \"CurrentPage\": 1,\n    \"TotalPages\": 1,\n    \"results\": [\n        {\n            \"PaymentID\": 77,\n            \"AccountName\": \"Test\",\n            \"AccountID\": 1,\n            \"Amount\": \"63.500\",\n            \"PaymentDate\": \"2024-06-13 12:42:48\",\n            \"Status\": \"Approved\",\n            \"InvoiceNo\": \"Inv_11\",\n            \"PaymentMethod\": \"BANK TRANSFER\",\n            \"Notes\": \"StripeACH (***6789) | Stripe ACH transaction_id py_1PRCzLHSsFd44A6rZ6L7yfhu\",\n            \"AmountWithSymbol\": \"63.500\"\n        }\n    ]\n}"}],"_postman_id":"88ee5200-862b-42fe-bcee-5a8ccc2ca84f"},{"name":"Get External Payment Options","id":"a89dfee0-7d1f-4495-8ddc-ce4d283a47b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/external_payment_options?AccountID=8","description":"<p><strong>Parameters:</strong><br />AccountID =&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","external_payment_options"],"host":["your_domain"],"query":[{"key":"AccountID","value":"8"}],"variable":[]}},"response":[{"id":"f8f37751-8cb6-4f9e-bdac-4878a722f45e","name":"Get External Payment Options","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/external_payment_options?AccountID=080","protocol":"https","host":["your_domain"],"path":["api","v1","external_payment_options"],"query":[{"key":"AccountID","value":"080"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": [\n        \"Paypal\"\n    ]\n}"}],"_postman_id":"a89dfee0-7d1f-4495-8ddc-ce4d283a47b0"},{"name":"Get subscription","id":"f8895c18-fdf8-45d6-9a1a-a2a7383c2fea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/subscription?AccountID=1","description":"<p><strong>Parameters:</strong><br />AccountID =&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","subscription"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"}],"variable":[]}},"response":[{"id":"cab7ce72-5aab-4c50-9f2a-75bcadc17340","name":"Get subscription","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/subscription?AccountID=1","protocol":"https","host":["your_domain"],"path":["api","v1","subscription"],"query":[{"key":"AccountID","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"TotalRecords\": 1,\n    \"RowsPerPage\": 50,\n    \"CurrentPage\": 1,\n    \"TotalPages\": 1,\n    \"results\": [\n        {\n            \"AccountSubscriptionID\": 1,\n            \"AccountID\": 1,\n            \"SequenceNo\": 1,\n            \"Name\": \"Regular Subscription\",\n            \"InvoiceDescription\": \"Regular Subscription\",\n            \"Qty\": 1,\n            \"StartDate\": \"2024-06-11\",\n            \"EndDate\": null,\n            \"ActivationFee\": \"0.00\",\n            \"DailyFee\": \"3.33\",\n            \"WeeklyFee\": \"23.33\",\n            \"MonthlyFee\": \"100.00\",\n            \"QuarterlyFee\": \"300.00\",\n            \"AnnuallyFee\": \"1200.00\",\n            \"SubscriptionID\": 1,\n            \"ExemptTax\": 0,\n            \"Status\": 1,\n            \"DiscountAmount\": null,\n            \"DiscountType\": \"Flat\"\n        }\n    ]\n}"}],"_postman_id":"f8895c18-fdf8-45d6-9a1a-a2a7383c2fea"},{"name":"Get CDR Cost since last invoice","id":"6be474d3-b9c1-426c-85bb-0d9aa38d0e16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/cdr_cost_since_last_billed?AccountID=1","description":"<p><strong>Parameters:</strong><br />AccountID =&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","cdr_cost_since_last_billed"],"host":["your_domain"],"query":[{"key":"AccountID","value":"1"}],"variable":[]}},"response":[{"id":"14672b06-6398-4ade-a58e-dcce5a54f3f4","name":"CDR Cost since last invoice","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your_domain/api/v1/cdr_cost_since_last_billed?AccountID=1","protocol":"https","host":["your_domain"],"path":["api","v1","cdr_cost_since_last_billed"],"query":[{"key":"AccountID","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"cost\": \"0.09\"\n}"}],"_postman_id":"6be474d3-b9c1-426c-85bb-0d9aa38d0e16"},{"name":"Get Invoice status list","id":"0fb6b8e5-119c-42b7-98bd-313803715971","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your_domain/api/v1/invoice_status_list","urlObject":{"protocol":"https","path":["api","v1","invoice_status_list"],"host":["your_domain"],"query":[],"variable":[]}},"response":[{"id":"00057636-7fc1-48bc-8aba-2c61f0d2b6be","name":"Invoice status list","originalRequest":{"method":"GET","header":[],"url":"https://your_domain/api/v1/invoice_status_list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"send\": \"Sent\",\n        \"cancel\": \"Cancel\",\n        \"paid\": \"Paid\",\n    }\n}"}],"_postman_id":"0fb6b8e5-119c-42b7-98bd-313803715971"},{"name":"Get Payment Method Profile Form","id":"920550a9-62e1-4745-bb03-ea88f4ee8ec3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://your-domain/api/v1/payment_method_profile_form?AccountID=58","description":"<p>AccountID=&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","payment_method_profile_form"],"host":["your-domain"],"query":[{"key":"AccountID","value":"58"}],"variable":[]}},"response":[{"id":"27ebf500-00f5-4751-b511-6002430aeb1a","name":"Get Payment Method Profile Form","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://your-domain/api/v1/payment_method_profile_form?AccountID=58","protocol":"https","host":["your-domain"],"path":["api","v1","payment_method_profile_form"],"query":[{"key":"AccountID","value":"58"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"PaymentMethod\": \"Stripe\",\n    \"FormComponents\": [\n        {\n            \"Name\": \"AccountID\",\n            \"label\": \"AccountID\",\n            \"Type\": \"integer\",\n            \"Required\": 1,\n            \"hidden\": 1,\n            \"Validation\": {}\n        },\n        {\n            \"Name\": \"Title\",\n            \"label\": \"Title\",\n            \"Type\": \"text\",\n            \"Required\": 0,\n            \"hidden\": 0,\n            \"Validation\": {}\n        },\n        {\n            \"Name\": \"NameOnCard\",\n            \"label\": \"Name On Card\",\n            \"Type\": \"text\",\n            \"Required\": 1,\n            \"hidden\": 0,\n            \"Validation\": {}\n        },\n        {\n            \"Name\": \"CardNumber\",\n            \"label\": \"Card Number\",\n            \"Type\": \"digits\",\n            \"Required\": 1,\n            \"hidden\": 0,\n            \"Validation\": {\n                \"digits_between\": \"13,19\"\n            }\n        },\n        {\n            \"Name\": \"ExpirationYear\",\n            \"label\": \"Expiration Year\",\n            \"Type\": \"date\",\n            \"Required\": 1,\n            \"hidden\": 0,\n            \"Validation\": {\n                \"date_format\": \"yyyy\"\n            }\n        },\n        {\n            \"Name\": \"ExpirationMonth\",\n            \"label\": \"Expiration Month\",\n            \"Type\": \"date\",\n            \"Required\": 1,\n            \"hidden\": 0,\n            \"Validation\": {\n                \"date_format\": \"mm\"\n            }\n        },\n        {\n            \"Name\": \"CVVNumber\",\n            \"label\": \"CVV Number\",\n            \"Type\": \"text\",\n            \"Required\": 1,\n            \"hidden\": 0,\n            \"Validation\": {}\n        }\n    ]\n}"}],"_postman_id":"920550a9-62e1-4745-bb03-ea88f4ee8ec3"},{"name":"Update Payment Method Profile","id":"30f72c45-3ee6-4793-b1f0-652c139f040f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountPaymentProfileID","value":"1","type":"text"},{"key":"request_type","value":"change_status","type":"text"},{"key":"Status","value":"1","type":"text"}]},"url":"https://your-domain/api/v1/payment_method_profiles","description":"<p>AccountPaymentProfileID=&gt; integer [required]<br />request_type=&gt; change_status [required]<br />Status=&gt; [1,0] [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","payment_method_profiles"],"host":["your-domain"],"query":[],"variable":[]}},"response":[{"id":"b209aa3f-3cac-41a6-bc91-e2d46cc90b98","name":"Update Payment Method Profile","originalRequest":{"method":"PUT","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountPaymentProfileID","value":"1","type":"text"},{"key":"request_type","value":"change_status","type":"text"},{"key":"Status","value":"1","type":"text"}]},"url":"https://your-domain/api/v1/payment_method_profiles"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"status\": \"success\",\r\n    \"message\": \"Card Successfully Updated\"\r\n}"}],"_postman_id":"30f72c45-3ee6-4793-b1f0-652c139f040f"},{"name":"Delete Payment Method Profile","id":"ba08bf2e-3273-4ca9-a87b-b18f14483f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"1","type":"text"},{"key":"AccountPaymentProfileID","value":"1","type":"text"}]},"url":"https://your-domain/api/v1/payment_method_profile","description":"<p>AccountPaymentProfileID=&gt; integer [required]<br />AccountID=&gt; integer [required]</p>\n","urlObject":{"protocol":"https","path":["api","v1","payment_method_profile"],"host":["your-domain"],"query":[],"variable":[]}},"response":[{"id":"57bddf56-193e-45e5-80de-0b9969fb1aa0","name":"Delete Payment Method Profile","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"AccountID","value":"1","type":"text"},{"key":"AccountPaymentProfileID","value":"1","type":"text"}]},"url":"https://your-domain/api/v1/payment_method_profiles"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":"{\r\n\t\t\"status\": \"success\",\r\n\t\t\"message\": \"Payment Method Profile Successfully deleted. Profile deleted too.\"\r\n}\r\n"}],"_postman_id":"ba08bf2e-3273-4ca9-a87b-b18f14483f31"}],"auth":{"type":"bearer","bearer":{"basicConfig":[]}},"event":[{"listen":"prerequest","script":{"id":"3c0cfee8-2cc0-4e62-9034-d17e9bd7c378","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0a5cd522-18ab-48e4-85e3-b47dd6fe132b","type":"text/javascript","exec":[""]}}]}