Chilkat Online Tools

C# / New FreshBooks / Identity Info Call

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Http http = new Chilkat.Http();
bool success;

// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>";

Chilkat.StringBuilder sbResponseBody = new Chilkat.StringBuilder();
success = http.QuickGetSb("https://api.freshbooks.com/auth/api/v1/users/me",sbResponseBody);
if (success == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

Chilkat.JsonObject jResp = new Chilkat.JsonObject();
jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = false;

Debug.WriteLine("Response Body:");
Debug.WriteLine(jResp.Emit());

int respStatusCode = http.LastStatus;
Debug.WriteLine("Response Status Code = " + Convert.ToString(respStatusCode));
if (respStatusCode >= 400) {
    Debug.WriteLine("Response Header:");
    Debug.WriteLine(http.LastHeader);
    Debug.WriteLine("Failed.");
    return;
}

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
https://api.freshbooks.com/auth/api/v1/users/me

Postman Collection Item JSON

{
  "name": "Identity Info Call",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let jsonData = JSON.parse(responseBody);",
          "pm.environment.set(\"accountId\", jsonData.response.roles[0].accountid);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "https://api.freshbooks.com/auth/api/v1/users/me",
      "protocol": "https",
      "host": [
        "api",
        "freshbooks",
        "com"
      ],
      "path": [
        "auth",
        "api",
        "v1",
        "users",
        "me"
      ]
    },
    "description": "This is an important endpoint and likely the first authenticated request you'll want to make to the FreshBooks API. \n\nSince you will need to tell us which account you're referring to and other identifiers, you can use this /me endpoint to get your accountId, businessId, identityId and a plethora of information about your FreshBooks account(s).  "
  },
  "response": [
    {
      "name": "Identity Info Call",
      "originalRequest": {
        "method": "GET",
        "header": [
        ],
        "url": {
          "raw": "https://api.freshbooks.com/auth/api/v1/users/me",
          "protocol": "https",
          "host": [
            "api",
            "freshbooks",
            "com"
          ],
          "path": [
            "auth",
            "api",
            "v1",
            "users",
            "me"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Server",
          "value": "nginx"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "X-Frame-Options",
          "value": "SAMEORIGIN"
        },
        {
          "key": "X-XSS-Protection",
          "value": "1; mode=block"
        },
        {
          "key": "X-Content-Type-Options",
          "value": "nosniff"
        },
        {
          "key": "X-Download-Options",
          "value": "noopen"
        },
        {
          "key": "X-Permitted-Cross-Domain-Policies",
          "value": "none"
        },
        {
          "key": "Referrer-Policy",
          "value": "strict-origin-when-cross-origin"
        },
        {
          "key": "ETag",
          "value": "W/\"b2adeb13ce0a58bd5a71f53ad9f08221\""
        },
        {
          "key": "Cache-Control",
          "value": "no-cache"
        },
        {
          "key": "X-Request-Id",
          "value": "014650ef-7287-413d-b939-df524aca9e7c"
        },
        {
          "key": "X-Runtime",
          "value": "0.218088"
        },
        {
          "key": "X-NewRelic-App-Data",
          "value": "PxQBWV5TCBABVlVSBAUHUFQTGhEhCQ0WQg1UDl1KG39aAV0NVBZSEAEZZQAFCBdGQwETERlcUkgXWVlETBUOF0g9UQZdVkBbRwxcEhNNA0xUGgdPVFIBAQNVUlQAAAZXVgEAAk5LUk4SVA1XWgoMVAdUAQUJWQVVUhRq"
        },
        {
          "key": "X-RateLimit-Limit",
          "value": "20"
        },
        {
          "key": "X-RateLimit-Remaining",
          "value": "0"
        },
        {
          "key": "X-RateLimit-Reset",
          "value": "1557343937"
        },
        {
          "key": "Retry-After",
          "value": "59"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "*"
        },
        {
          "key": "Expires",
          "value": "Tue, 08 May 2018 19:31:17 GMT"
        },
        {
          "key": "Content-Encoding",
          "value": "gzip"
        },
        {
          "key": "Via",
          "value": "1.1 google"
        },
        {
          "key": "Via",
          "value": "1.1 varnish"
        },
        {
          "key": "Accept-Ranges",
          "value": "bytes"
        },
        {
          "key": "Accept-Ranges",
          "value": "bytes"
        },
        {
          "key": "Transfer-Encoding",
          "value": "chunked"
        },
        {
          "key": "Date",
          "value": "Wed, 08 May 2019 19:31:17 GMT"
        },
        {
          "key": "Age",
          "value": "0"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "X-Served-By",
          "value": "cache-mdw17330-MDW"
        },
        {
          "key": "X-Cache",
          "value": "MISS"
        },
        {
          "key": "X-Cache-Hits",
          "value": "0"
        },
        {
          "key": "Vary",
          "value": "Accept-Encoding"
        },
        {
          "key": "Country",
          "value": "CA"
        },
        {
          "key": "Strict-Transport-Security",
          "value": "max-age=31536000; includeSubDomains; preload"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"response\": {\n        \"id\": 37256,\n        \"profile\": {\n            \"setup_complete\": true,\n            \"first_name\": \"Marshall\",\n            \"last_name\": \"Johnston\",\n            \"phone_number\": null,\n            \"address\": null,\n            \"professions\": [\n                {\n                    \"id\": 58182,\n                    \"business_id\": null,\n                    \"title\": null,\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 67186,\n                    \"business_id\": null,\n                    \"title\": \"Other Accounting and Finance\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 678903,\n                    \"business_id\": null,\n                    \"title\": \"House Cleaning\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 678904,\n                    \"business_id\": null,\n                    \"title\": \"Window Cleaning\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 678905,\n                    \"business_id\": null,\n                    \"title\": \"Cleaning Services\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 702335,\n                    \"business_id\": null,\n                    \"title\": \"Software as a Service\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 702775,\n                    \"business_id\": null,\n                    \"title\": \"Construction\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 770535,\n                    \"business_id\": null,\n                    \"title\": \"Restaurant\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 818391,\n                    \"business_id\": null,\n                    \"title\": \"Hospitality\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 893211,\n                    \"business_id\": null,\n                    \"title\": \"Catering Services\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 902347,\n                    \"business_id\": null,\n                    \"title\": \"Digital Marketing Services\",\n                    \"company\": \"Executive Recruiter\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1068601,\n                    \"business_id\": 813619,\n                    \"title\": \"Catering Services\",\n                    \"company\": \"Encore Catering\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1086673,\n                    \"business_id\": 825065,\n                    \"title\": \"Event Management\",\n                    \"company\": \"Some Awards\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1134147,\n                    \"business_id\": 855397,\n                    \"title\": \"Catering Services\",\n                    \"company\": \"Barbarido's\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1200673,\n                    \"business_id\": 909393,\n                    \"title\": \"Accommodation\",\n                    \"company\": \"Marshall's Demo\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1250531,\n                    \"business_id\": 954179,\n                    \"title\": \"Management Consulting\",\n                    \"company\": \"Baltimore FD \",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1582769,\n                    \"business_id\": 1246821,\n                    \"title\": \"Health Care\",\n                    \"company\": \"Tanzania\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1587535,\n                    \"business_id\": 1250903,\n                    \"title\": \"Catering Services\",\n                    \"company\": \"Bebe Catering\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 1658015,\n                    \"business_id\": 1313109,\n                    \"title\": \"Consulting\",\n                    \"company\": \"Field Drillers Inc. \",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 2052070,\n                    \"business_id\": 1654536,\n                    \"title\": \"Auto Glass Installation\",\n                    \"company\": \"Paul's Auto Body\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 2236630,\n                    \"business_id\": 1803032,\n                    \"title\": \"Pool Services\",\n                    \"company\": \"Trees\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 2427152,\n                    \"business_id\": 1962882,\n                    \"title\": \"Consulting\",\n                    \"company\": \"Marshall Johnston\",\n                    \"designation\": null\n                },\n                {\n                    \"id\": 2454866,\n                    \"business_id\": 1986556,\n                    \"title\": \"ABA Therapy\",\n                    \"company\": \"Caroline's Corral\",\n                    \"designation\": null\n                }\n            ]\n        },\n        \"first_name\": \"Marshall\",\n        \"last_name\": \"Johnston\",\n        \"email\": \"api.freshbooks@gmail.com\",\n        \"language\": \"en\",\n        \"confirmed_at\": \"2016-01-21T18:18:54Z\",\n        \"created_at\": \"2016-01-21T18:18:38Z\",\n        \"unconfirmed_email\": null,\n        \"setup_complete\": true,\n        \"phone_numbers\": [\n            {\n                \"title\": \"\",\n                \"phone_number\": null\n            }\n        ],\n        \"addresses\": [\n            null\n        ],\n        \"profession\": {\n            \"id\": 58182,\n            \"business_id\": null,\n            \"title\": null,\n            \"company\": \"Executive Recruiter\",\n            \"designation\": null\n        },\n        \"links\": {\n            \"me\": \"/service/auth/api/v1/users?id=37256\",\n            \"roles\": \"/service/auth/api/v1/users/role/37256\"\n        },\n        \"permissions\": {\n            \"rAlTo\": {\n                \"advanced_accounting.access\": true,\n                \"advanced_payments.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"client.limit\": 1000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"payments_fees_report.access\": true,\n                \"recurring_revenue_report.access\": true,\n                \"remove_branding.access\": true,\n                \"staff.limit\": 2,\n                \"business_accountant.limit\": 10,\n                \"onboarding_checklist.access\": true,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true\n            },\n            \"E86QZ\": {\n                \"advanced_accounting.access\": true,\n                \"advanced_payments.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": 1000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"payments_fees_report.access\": true,\n                \"quickbooks_integration.access\": true,\n                \"recurring_revenue_report.access\": true,\n                \"remove_branding.access\": true,\n                \"staff.limit\": 12,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"rich_proposals.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"attachments.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"retainers.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"RmpKp\": {\n                \"client.limit\": -1,\n                \"staff.limit\": -1,\n                \"attachments.access\": true,\n                \"advanced_accounting.access\": true,\n                \"business_accountant.limit\": 10,\n                \"proposals_candidate.access\": true,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"rich_proposals.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"J9hAK\": {\n                \"advanced_accounting.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"client.limit\": 1000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"recurring_revenue_report.access\": true,\n                \"remove_branding.access\": true,\n                \"business_accountant.limit\": 10,\n                \"onboarding_checklist.access\": true,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"gr1ndR\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"advanced_accounting.access\": true,\n                \"business_accountant.limit\": 10,\n                \"proposals_candidate.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true\n            },\n            \"apwodA\": {\n                \"advanced_accounting.access\": true,\n                \"advanced_payments.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"client.limit\": 4000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"payments_fees_report.access\": true,\n                \"quickbooks_integration.access\": true,\n                \"recurring_revenue_report.access\": true,\n                \"remove_branding.access\": true,\n                \"staff.limit\": 2,\n                \"business_accountant.limit\": 10,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"rich_proposals.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"helios_sync_throttle.beta.access\": true\n            },\n            \"XgGiT\": {\n                \"client.limit\": -1,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true\n            },\n            \"7lwxR\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"advanced_accounting.access\": true,\n                \"business_accountant.limit\": 10,\n                \"proposals_candidate.access\": true,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true\n            },\n            \"4WMVg\": {\n                \"client.limit\": -1,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"staff.limit\": -1,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"x34yX\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true\n            },\n            \"e1rYq\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true\n            },\n            \"3ErwB\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true\n            },\n            \"8NppA\": {\n                \"advanced_accounting.access\": true,\n                \"advanced_payments.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": 1000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"payments_fees_report.access\": true,\n                \"recurring_revenue_report.access\": true,\n                \"remove_branding.access\": true,\n                \"staff.limit\": 2,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"rich_proposals.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"j1412\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true\n            },\n            \"BRAVo\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"auto_bank_import.access\": true\n            },\n            \"M1oaR\": {\n                \"client.limit\": -1,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"auto_bank_import.access\": true\n            },\n            \"E4MaY\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"auto_bank_import.access\": true\n            },\n            \"M1GeK\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"auto_bank_import.access\": true\n            },\n            \"7Po26\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"advanced_accounting.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"auto_bank_import.access\": true\n            },\n            \"ZaZdo\": {\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"advanced_accounting.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"helios_sync_throttle.beta.access\": true\n            },\n            \"pPLMZ\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"business_accountant.limit\": 10,\n                \"proposals_candidate.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true\n            },\n            \"EeCnZ\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true\n            },\n            \"pe4MW\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"client.limit\": -1,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"esignatures.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true\n            },\n            \"oN6yL\": {\n                \"advanced_accounting.access\": true,\n                \"advanced_payments.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"client.limit\": 1000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"remove_branding.access\": true,\n                \"staff.limit\": 3,\n                \"business_accountant.limit\": 10,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"rich_proposals.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"dowO0g\": {\n                \"advanced_accounting.access\": true,\n                \"advanced_payments.access\": true,\n                \"auto_bank_import.access\": true,\n                \"autobill.limit\": -1,\n                \"bank_import.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": 1000,\n                \"document.limit\": 2,\n                \"edit_subject_line.access\": true,\n                \"late_fee.access\": true,\n                \"late_reminder.access\": true,\n                \"payments_fees_report.access\": true,\n                \"recurring_revenue_report.access\": true,\n                \"remove_branding.access\": true,\n                \"staff.limit\": 2,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"proposals_candidate.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"yA0R2P\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": -1,\n                \"proposals_candidate.access\": true,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true\n            },\n            \"LJZ1p3\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": -1,\n                \"proposals_candidate.access\": true,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"wkMd2g\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": -1,\n                \"proposals_candidate.access\": true,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"3x42x2\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": -1,\n                \"proposals_candidate.access\": true,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"inline_expense_edit.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            },\n            \"lWn0vG\": {\n                \"advanced_accounting.access\": true,\n                \"attachments.access\": true,\n                \"business_accountant.limit\": 10,\n                \"client.limit\": -1,\n                \"proposals_candidate.access\": true,\n                \"rich_proposals.access\": true,\n                \"staff.limit\": -1,\n                \"BetaHeliosAsyncExpenses.access\": true,\n                \"beta_mobile_create_expense_subcategory.access\": true,\n                \"ios_beta_zendesk_widget.access\": true,\n                \"mobile_receipt_rebilling.access\": true,\n                \"helios_pushnotifications.beta.access\": true,\n                \"ios_beta_payment_schedules.access\": true,\n                \"helios_rebill_time.access\": true,\n                \"esignatures.access\": true,\n                \"helios_dashboard.access\": true,\n                \"helios_late_fee_reminder.beta.access\": true,\n                \"helios_bulk_actions_invoices.beta.access\": true,\n                \"auto_bank_import.access\": true,\n                \"helios_virtual_terminal.beta.access\": true,\n                \"helios_expense_rebilling.beta.access\": true,\n                \"helios_company_taxes.beta.access\": true,\n                \"helios_invoice_archive.beta.access\": true,\n                \"accountant_invite.access\": true,\n                \"helios_sync_throttle.beta.access\": true,\n                \"BankReconciliation.access\": true,\n                \"helios_push_resource_to_use_execute.beta.access\": true,\n                \"new_time_tracking.access\": true,\n                \"bank_rec_smart_match.access\": true,\n                \"balance_sheet.access\": true,\n                \"invoice_v2_search.access\": true,\n                \"import_items_csv.access\": true,\n                \"export_clients_csv.access\": true,\n                \"helios_virtual_terminal_tutorial.beta.access\": true,\n                \"helios_virtual_terminal_advertising.beta.access\": true\n            }\n        },\n        \"groups\": [\n            {\n                \"id\": 1967,\n                \"group_id\": 633,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 1968,\n                \"group_id\": 634,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 193155,\n                \"group_id\": 78460,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 966552,\n                \"group_id\": 56153,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 36312,\n                \"active\": true\n            },\n            {\n                \"id\": 1543573,\n                \"group_id\": 792990,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 36312,\n                \"active\": true\n            },\n            {\n                \"id\": 1918970,\n                \"group_id\": 1127872,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2114592,\n                \"group_id\": 1308603,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2141881,\n                \"group_id\": 1332745,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2141913,\n                \"group_id\": 1332775,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2156423,\n                \"group_id\": 1346356,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2156547,\n                \"group_id\": 1346480,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2157276,\n                \"group_id\": 1347190,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2168935,\n                \"group_id\": 1358272,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2192234,\n                \"group_id\": 1380180,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2192248,\n                \"group_id\": 1380191,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2192266,\n                \"group_id\": 1380195,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2192463,\n                \"group_id\": 1380246,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2222920,\n                \"group_id\": 1407623,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 497510,\n                \"active\": true\n            },\n            {\n                \"id\": 2234009,\n                \"group_id\": 1417581,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2260191,\n                \"group_id\": 1441554,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 514480,\n                \"active\": true\n            },\n            {\n                \"id\": 2262129,\n                \"group_id\": 1443426,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 514821,\n                \"active\": true\n            },\n            {\n                \"id\": 2262144,\n                \"group_id\": 1443440,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 514821,\n                \"active\": true\n            },\n            {\n                \"id\": 2262150,\n                \"group_id\": 1443446,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 514821,\n                \"active\": true\n            },\n            {\n                \"id\": 2274722,\n                \"group_id\": 1454635,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2506133,\n                \"group_id\": 1657416,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2542007,\n                \"group_id\": 1216849,\n                \"role\": \"business_partner\",\n                \"identity_id\": 37256,\n                \"business_id\": 416850,\n                \"active\": true\n            },\n            {\n                \"id\": 2542009,\n                \"group_id\": 1689219,\n                \"role\": \"business_partner\",\n                \"identity_id\": 37256,\n                \"business_id\": 416850,\n                \"active\": true\n            },\n            {\n                \"id\": 2629614,\n                \"group_id\": 1764389,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 571231,\n                \"active\": true\n            },\n            {\n                \"id\": 2721471,\n                \"group_id\": 1841410,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 595416,\n                \"active\": true\n            },\n            {\n                \"id\": 2762225,\n                \"group_id\": 1873770,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 608077,\n                \"active\": true\n            },\n            {\n                \"id\": 2860148,\n                \"group_id\": 1240045,\n                \"role\": \"business_employee\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 2885859,\n                \"group_id\": 1984013,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2885865,\n                \"group_id\": 1984018,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 2936109,\n                \"group_id\": 2029459,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 2987810,\n                \"group_id\": 2078022,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3045577,\n                \"group_id\": 2132385,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 677357,\n                \"active\": true\n            },\n            {\n                \"id\": 3045917,\n                \"group_id\": 2132721,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 677357,\n                \"active\": true\n            },\n            {\n                \"id\": 3090170,\n                \"group_id\": 2174786,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 685582,\n                \"active\": true\n            },\n            {\n                \"id\": 3090389,\n                \"group_id\": 2078064,\n                \"role\": \"business_partner\",\n                \"identity_id\": 37256,\n                \"business_id\": 661907,\n                \"active\": true\n            },\n            {\n                \"id\": 3090519,\n                \"group_id\": 2175115,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 685582,\n                \"active\": true\n            },\n            {\n                \"id\": 3126739,\n                \"group_id\": 2208000,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3296645,\n                \"group_id\": 2356217,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 3302553,\n                \"group_id\": 2361523,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 661907,\n                \"active\": true\n            },\n            {\n                \"id\": 3317919,\n                \"group_id\": 2375849,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 3379781,\n                \"group_id\": 2429471,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 3452251,\n                \"group_id\": 2482343,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3497857,\n                \"group_id\": 2522977,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 813619,\n                \"active\": true\n            },\n            {\n                \"id\": 3511533,\n                \"group_id\": 2512601,\n                \"role\": \"business_partner\",\n                \"identity_id\": 37256,\n                \"business_id\": 808743,\n                \"active\": true\n            },\n            {\n                \"id\": 3511535,\n                \"group_id\": 2512661,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 808743,\n                \"active\": true\n            },\n            {\n                \"id\": 3521561,\n                \"group_id\": 2543985,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 825065,\n                \"active\": true\n            },\n            {\n                \"id\": 3521587,\n                \"group_id\": 2544005,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 825065,\n                \"active\": true\n            },\n            {\n                \"id\": 3549881,\n                \"group_id\": 2563183,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3558265,\n                \"group_id\": 2567483,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3600089,\n                \"group_id\": 2603609,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 3600127,\n                \"group_id\": 2603647,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 855397,\n                \"active\": true\n            },\n            {\n                \"id\": 3663479,\n                \"group_id\": 2658605,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 3666257,\n                \"group_id\": 2660359,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3673357,\n                \"group_id\": 2665759,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 661907,\n                \"active\": true\n            },\n            {\n                \"id\": 3713221,\n                \"group_id\": 2695983,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3713231,\n                \"group_id\": 2695991,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3713285,\n                \"group_id\": 2696043,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3767059,\n                \"group_id\": 2724855,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3767085,\n                \"group_id\": 2724881,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3767125,\n                \"group_id\": 2724919,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 909393,\n                \"active\": true\n            },\n            {\n                \"id\": 3786939,\n                \"group_id\": 2739387,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3795701,\n                \"group_id\": 2746983,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 3843903,\n                \"group_id\": 2788307,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 425898,\n                \"active\": true\n            },\n            {\n                \"id\": 3873747,\n                \"group_id\": 2814103,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 954179,\n                \"active\": true\n            },\n            {\n                \"id\": 3882989,\n                \"group_id\": 2822315,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 954179,\n                \"active\": true\n            },\n            {\n                \"id\": 3883021,\n                \"group_id\": 2822343,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 954179,\n                \"active\": true\n            },\n            {\n                \"id\": 3968689,\n                \"group_id\": 2895155,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 452001,\n                \"active\": true\n            },\n            {\n                \"id\": 3968751,\n                \"group_id\": 2895215,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 452001,\n                \"active\": true\n            },\n            {\n                \"id\": 4090165,\n                \"group_id\": 3001003,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 4237723,\n                \"group_id\": 3063119,\n                \"role\": \"business_employee\",\n                \"identity_id\": 37256,\n                \"business_id\": 1057557,\n                \"active\": true\n            },\n            {\n                \"id\": 4237725,\n                \"group_id\": 3100077,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 1057557,\n                \"active\": true\n            },\n            {\n                \"id\": 4247387,\n                \"group_id\": 3132913,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 1057557,\n                \"active\": true\n            },\n            {\n                \"id\": 4294517,\n                \"group_id\": 3172349,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 4301745,\n                \"group_id\": 3148707,\n                \"role\": \"business_partner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1099865,\n                \"active\": true\n            },\n            {\n                \"id\": 4338615,\n                \"group_id\": 3208833,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 4351319,\n                \"group_id\": 3219007,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 1057557,\n                \"active\": true\n            },\n            {\n                \"id\": 4452935,\n                \"group_id\": 3303489,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 4595775,\n                \"group_id\": 3425997,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1246821,\n                \"active\": true\n            },\n            {\n                \"id\": 4595785,\n                \"group_id\": 3426007,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1246821,\n                \"active\": true\n            },\n            {\n                \"id\": 4595793,\n                \"group_id\": 3426015,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1246821,\n                \"active\": true\n            },\n            {\n                \"id\": 4608649,\n                \"group_id\": 3436901,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1250903,\n                \"active\": true\n            },\n            {\n                \"id\": 4777839,\n                \"group_id\": 3583639,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 1057557,\n                \"active\": true\n            },\n            {\n                \"id\": 4808823,\n                \"group_id\": 3610711,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1313109,\n                \"active\": true\n            },\n            {\n                \"id\": 4808867,\n                \"group_id\": 3610749,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1313109,\n                \"active\": true\n            },\n            {\n                \"id\": 4808879,\n                \"group_id\": 3610757,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1313109,\n                \"active\": true\n            },\n            {\n                \"id\": 4952689,\n                \"group_id\": 3735237,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 5075911,\n                \"group_id\": 3840605,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 5644650,\n                \"group_id\": 4306410,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1654536,\n                \"active\": true\n            },\n            {\n                \"id\": 5846162,\n                \"group_id\": 4474476,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 5857762,\n                \"group_id\": 4484876,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 5865014,\n                \"group_id\": 4489970,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 5893762,\n                \"group_id\": 4515298,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6029562,\n                \"group_id\": 4625244,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1803032,\n                \"active\": true\n            },\n            {\n                \"id\": 6094496,\n                \"group_id\": 4679496,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6095326,\n                \"group_id\": 4680186,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6133242,\n                \"group_id\": 4707850,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6137044,\n                \"group_id\": 4710934,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6197200,\n                \"group_id\": 4760726,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6270530,\n                \"group_id\": 4811212,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6386150,\n                \"group_id\": 4895364,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6439728,\n                \"group_id\": 4937264,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1962882,\n                \"active\": true\n            },\n            {\n                \"id\": 6446238,\n                \"group_id\": 4942664,\n                \"role\": \"business_partner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1966214,\n                \"active\": true\n            },\n            {\n                \"id\": 6456062,\n                \"group_id\": 4951004,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1966214,\n                \"active\": true\n            },\n            {\n                \"id\": 6456064,\n                \"group_id\": 4951006,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1966214,\n                \"active\": true\n            },\n            {\n                \"id\": 6456070,\n                \"group_id\": 4951012,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1966214,\n                \"active\": true\n            },\n            {\n                \"id\": 6456078,\n                \"group_id\": 4951020,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1966214,\n                \"active\": true\n            },\n            {\n                \"id\": 6487858,\n                \"group_id\": 4977548,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1986556,\n                \"active\": true\n            },\n            {\n                \"id\": 6487912,\n                \"group_id\": 4977602,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1986590,\n                \"active\": true\n            },\n            {\n                \"id\": 6488028,\n                \"group_id\": 4977692,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1986590,\n                \"active\": true\n            },\n            {\n                \"id\": 6488068,\n                \"group_id\": 4977720,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1986590,\n                \"active\": true\n            },\n            {\n                \"id\": 6488090,\n                \"group_id\": 4977738,\n                \"role\": \"owner\",\n                \"identity_id\": 37256,\n                \"business_id\": 1966214,\n                \"active\": true\n            },\n            {\n                \"id\": 6538632,\n                \"group_id\": 5016490,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            },\n            {\n                \"id\": 6539348,\n                \"group_id\": 5016820,\n                \"role\": \"manager\",\n                \"identity_id\": 37256,\n                \"business_id\": 27,\n                \"active\": true\n            }\n        ],\n        \"subscription_statuses\": {\n            \"rALYo\": \"active\",\n            \"E86Qp\": \"active\",\n            \"RnPKp\": \"active\",\n            \"J7nAK\": \"active\",\n            \"gjndR\": \"active\",\n            \"apw1A\": \"active\",\n            \"0XaOw\": \"cancelled\",\n            \"7lwxr\": \"cancelled\",\n            \"4VMVg\": \"active\",\n            \"x33xX\": \"cancelled\",\n            \"e1yRq\": \"cancelled\",\n            \"3eRwB\": \"cancelled\",\n            \"8nPPA\": \"active\",\n            \"j1322\": \"cancelled\",\n            \"B3AVo\": \"trial_expired\",\n            \"M1OaR\": \"cancelled\",\n            \"E3MAY\": \"cancelled\",\n            \"M1GeK\": \"cancelled\",\n            \"7PO26\": \"cancelled\",\n            \"ZAZdo\": \"cancelled\",\n            \"0PJMZ\": \"active_trial\",\n            \"Ee0nZ\": \"cancelled\",\n            \"pe6MW\": \"cancelled\",\n            \"oM6yL\": \"active\",\n            \"dowQ0g\": \"active\",\n            \"yA0R2P\": \"cancelled\",\n            \"LJZ1p4\": \"active_trial\",\n            \"wkMd2g\": \"active_trial\",\n            \"3x62x2\": \"active_trial\",\n            \"lwy0vG\": \"active_trial\"\n        },\n        \"integrations\": {},\n        \"business_memberships\": [\n            {\n                \"id\": 1967,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIyMTAxMTkzIiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.g2bdKjluvezQKSYQ7uUZJu7Gjt21YImy5VYd3zshGsA\",\n                \"business\": {\n                    \"id\": 27,\n                    \"name\": \"Coconut Marketing\",\n                    \"account_id\": \"E86Qp\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2253622,\n                        \"street\": \"15 N Echo Ave.\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"92840\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 76482,\n                        \"phone_number\": \"416-436-8583\"\n                    },\n                    \"business_clients\": [\n                        {\n                            \"id\": 27619,\n                            \"business_id\": 27,\n                            \"account_id\": \"owGZ6\",\n                            \"userid\": 316723,\n                            \"client_business\": {\n                                \"business_id\": 27\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 20019,\n                                \"account_id\": \"owGZ6\"\n                            }\n                        },\n                        {\n                            \"id\": 3839,\n                            \"business_id\": 27,\n                            \"account_id\": \"Ex8B1\",\n                            \"userid\": 270493,\n                            \"client_business\": {\n                                \"business_id\": 27\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 20109,\n                                \"account_id\": \"Ex8B1\"\n                            }\n                        },\n                        {\n                            \"id\": 3840,\n                            \"business_id\": 27,\n                            \"account_id\": \"kyRVK\",\n                            \"userid\": 23360,\n                            \"client_business\": {\n                                \"business_id\": 27\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 47224,\n                                \"account_id\": \"kyRVK\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 966552,\n                \"role\": \"manager\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": null,\n                \"business\": {\n                    \"id\": 36312,\n                    \"name\": \"Matthew's Sticker Stadium\",\n                    \"account_id\": \"RnPKp\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 51679,\n                        \"street\": \"1655 Dupont Street\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M5R0B5\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 161510,\n                        \"phone_number\": \"1-866-303-4114\"\n                    },\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 2262129,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzMDkxNDY4IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.WsMUqte6GLdp3LT5q5ECquJdB77NM_Zg8YVRuAo966Y\",\n                \"business\": {\n                    \"id\": 514821,\n                    \"name\": \"Coconut Advertising - Hubspot\",\n                    \"account_id\": \"4VMVg\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2407852,\n                        \"street\": \"\",\n                        \"city\": \"\",\n                        \"province\": \"\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"\"\n                    },\n                    \"phone_number\": null,\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 2542007,\n                \"role\": \"business_partner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzMDA2OTc1IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.7_iwHndI39jj9xLX01HsFQ2RgvTbyQFa6iQXuXrKqzc\",\n                \"business\": {\n                    \"id\": 416850,\n                    \"name\": \"Marshall Johnston\",\n                    \"account_id\": \"gjndR\",\n                    \"date_format\": \"dd/mm/yyyy\",\n                    \"address\": {\n                        \"id\": 693054,\n                        \"street\": \"1655 Dupont Street\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M5P2X8\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 146034,\n                        \"phone_number\": \"866-734-9224\"\n                    },\n                    \"business_clients\": [\n                        {\n                            \"id\": 117202,\n                            \"business_id\": 416850,\n                            \"account_id\": \"apw1A\",\n                            \"userid\": 229211,\n                            \"client_business\": {\n                                \"business_id\": 416850\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 425898,\n                                \"account_id\": \"apw1A\"\n                            }\n                        },\n                        {\n                            \"id\": 114674,\n                            \"business_id\": 416850,\n                            \"account_id\": \"8nPPA\",\n                            \"userid\": 20720,\n                            \"client_business\": {\n                                \"business_id\": 416850\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 677357,\n                                \"account_id\": \"8nPPA\"\n                            }\n                        },\n                        {\n                            \"id\": 285383,\n                            \"business_id\": 416850,\n                            \"account_id\": \"peaNk\",\n                            \"userid\": 2397,\n                            \"client_business\": {\n                                \"business_id\": 416850\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 1280095,\n                                \"account_id\": \"peaNk\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 2860148,\n                \"role\": \"business_employee\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": null,\n                \"business\": {\n                    \"id\": 425898,\n                    \"name\": \"FreshBooks\",\n                    \"account_id\": \"apw1A\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 685202,\n                        \"street\": \"1655 Dupont Street Suite 250\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M6P 3T1\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 149414,\n                        \"phone_number\": \"1-888-705-1295\"\n                    },\n                    \"business_clients\": [\n                        {\n                            \"id\": 108865,\n                            \"business_id\": 425898,\n                            \"account_id\": \"a1Y0k\",\n                            \"userid\": 1515,\n                            \"client_business\": {\n                                \"business_id\": 425898\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 647222,\n                                \"account_id\": \"a1Y0k\"\n                            }\n                        },\n                        {\n                            \"id\": 131449,\n                            \"business_id\": 425898,\n                            \"account_id\": \"kqxBE\",\n                            \"userid\": 82835,\n                            \"client_business\": {\n                                \"business_id\": 425898\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 702119,\n                                \"account_id\": \"kqxBE\"\n                            }\n                        },\n                        {\n                            \"id\": 136065,\n                            \"business_id\": 425898,\n                            \"account_id\": \"6WX3P\",\n                            \"userid\": 73,\n                            \"client_business\": {\n                                \"business_id\": 425898\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 767501,\n                                \"account_id\": \"6WX3P\"\n                            }\n                        },\n                        {\n                            \"id\": 136741,\n                            \"business_id\": 425898,\n                            \"account_id\": \"AVBnO\",\n                            \"userid\": 1157,\n                            \"client_business\": {\n                                \"business_id\": 425898\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 770241,\n                                \"account_id\": \"AVBnO\"\n                            }\n                        },\n                        {\n                            \"id\": 159781,\n                            \"business_id\": 425898,\n                            \"account_id\": \"0lW1W\",\n                            \"userid\": 60921,\n                            \"client_business\": {\n                                \"business_id\": 425898\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 823675,\n                                \"account_id\": \"0lW1W\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 3045577,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzMjI5MDI4IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.x3bAIqnHW1t-WVdoDOMj8DfQdHsIdVEHyU7ptGks6_U\",\n                \"business\": {\n                    \"id\": 677357,\n                    \"name\": \"Trillium (FreshBooks) Catering\",\n                    \"account_id\": \"8nPPA\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 671351,\n                        \"street\": \"2 Gladstone Ave.\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M6J 0B2\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 237559,\n                        \"phone_number\": \"416-436-8583\"\n                    },\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 3090389,\n                \"role\": \"business_partner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiI3Njc4MzQiLCJjcmVhdGVkX2F0IjoiMjAxOS0wNS0wOFQxOTozMToxNyswMDowMCJ9.9K7RPNnwenNwZiGcOdIyB-jSGtrwaPAQypMR0RgFr_M\",\n                \"business\": {\n                    \"id\": 661907,\n                    \"name\": \"Strawberry Jam Marketing\",\n                    \"account_id\": \"rALYo\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 654317,\n                        \"street\": \"\",\n                        \"city\": \"\",\n                        \"province\": \"New York\",\n                        \"country\": \"United States\",\n                        \"postal_code\": \"\"\n                    },\n                    \"phone_number\": null,\n                    \"business_clients\": [\n                        {\n                            \"id\": 129977,\n                            \"business_id\": 661907,\n                            \"account_id\": \"XYEoL\",\n                            \"userid\": 78603,\n                            \"client_business\": {\n                                \"business_id\": 661907\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 742411,\n                                \"account_id\": \"XYEoL\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 3497857,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzMzM1NjA3IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.Bg--PBJxoDap7G0DmfFP92TYbgX6E2KKTmxeQuoKvOU\",\n                \"business\": {\n                    \"id\": 813619,\n                    \"name\": \"Encore Catering\",\n                    \"account_id\": \"M1OaR\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 851427,\n                        \"street\": null,\n                        \"city\": null,\n                        \"province\": null,\n                        \"country\": \"Canada\",\n                        \"postal_code\": null\n                    },\n                    \"phone_number\": null,\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 3511533,\n                \"role\": \"business_partner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzMzMxOTY1IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.XHKg_84_MDCJ3ofDkMMBquDUNr6MH16jtWAwUpwEOUI\",\n                \"business\": {\n                    \"id\": 808743,\n                    \"name\": \"Retailors Group\",\n                    \"account_id\": \"B3AVo\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 844509,\n                        \"street\": \"113A - 2255 Dundas St W\",\n                        \"city\": \"Mississauga\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"L5K 1R6\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 292605,\n                        \"phone_number\": \"4162687241\"\n                    },\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 4237723,\n                \"role\": \"business_employee\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": null,\n                \"business\": {\n                    \"id\": 1057557,\n                    \"name\": \"NetClick Marketing and Advertising\",\n                    \"account_id\": \"0PJMZ\",\n                    \"date_format\": \"dd/mm/yyyy\",\n                    \"address\": {\n                        \"id\": 1182443,\n                        \"street\": \"007 Bond Street\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"A1B2C3\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 413933,\n                        \"phone_number\": \"8887349224\"\n                    },\n                    \"business_clients\": [\n                        {\n                            \"id\": 231291,\n                            \"business_id\": 1057557,\n                            \"account_id\": \"6Z7L4\",\n                            \"userid\": 540267,\n                            \"client_business\": {\n                                \"business_id\": 1057557\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 757,\n                                \"account_id\": \"6Z7L4\"\n                            }\n                        },\n                        {\n                            \"id\": 227033,\n                            \"business_id\": 1057557,\n                            \"account_id\": \"VQAAG\",\n                            \"userid\": 266483,\n                            \"client_business\": {\n                                \"business_id\": 1057557\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 332432,\n                                \"account_id\": \"VQAAG\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 4301745,\n                \"role\": \"business_partner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIyNjA1MDg4IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.OALFxNhq3MC52b9-zxcyZZiTqOHoqlhVwJKZfsGGv1M\",\n                \"business\": {\n                    \"id\": 1099865,\n                    \"name\": \"FreshBooks\",\n                    \"account_id\": \"J7nAK\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 1239887,\n                        \"street\": \"1655 Dupont St. Suite 250\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M6P 3T1\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 434493,\n                        \"phone_number\": \"416 780-2701\"\n                    },\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 4808823,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzNzI3NDgxIiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.wM47sYbse2c_ziHIwzvOzhJs4Ta55fBULUTzj2zxijw\",\n                \"business\": {\n                    \"id\": 1313109,\n                    \"name\": \"Ontario Chiropractic Association\",\n                    \"account_id\": \"oM6yL\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 1533803,\n                        \"street\": \"20 Victoria St. \",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M6j 0B2\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 553251,\n                        \"phone_number\": \"4164368583\"\n                    },\n                    \"business_clients\": [\n                        {\n                            \"id\": 293559,\n                            \"business_id\": 1313109,\n                            \"account_id\": \"26JzY\",\n                            \"userid\": 436623,\n                            \"client_business\": {\n                                \"business_id\": 1313109\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 19101,\n                                \"account_id\": \"26JzY\"\n                            }\n                        },\n                        {\n                            \"id\": 293571,\n                            \"business_id\": 1313109,\n                            \"account_id\": \"VQAAG\",\n                            \"userid\": 294161,\n                            \"client_business\": {\n                                \"business_id\": 1313109\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 332432,\n                                \"account_id\": \"VQAAG\"\n                            }\n                        },\n                        {\n                            \"id\": 293569,\n                            \"business_id\": 1313109,\n                            \"account_id\": \"05xly\",\n                            \"userid\": 269979,\n                            \"client_business\": {\n                                \"business_id\": 1313109\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 611912,\n                                \"account_id\": \"05xly\"\n                            }\n                        },\n                        {\n                            \"id\": 293567,\n                            \"business_id\": 1313109,\n                            \"account_id\": \"Y433O\",\n                            \"userid\": 196165,\n                            \"client_business\": {\n                                \"business_id\": 1313109\n                            },\n                            \"account_business\": {\n                                \"account_business_id\": 1003057,\n                                \"account_id\": \"Y433O\"\n                            }\n                        }\n                    ]\n                }\n            },\n            {\n                \"id\": 5644650,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiIzOTk3MjE2IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.dWOgLwXuBQtd5IiknW4TObUuufHMXKEdXasuJ3HnfiM\",\n                \"business\": {\n                    \"id\": 1654536,\n                    \"name\": \"Valesso Cardlock\",\n                    \"account_id\": \"dowQ0g\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2018418,\n                        \"street\": \"1224 Birmingham Rd. \",\n                        \"city\": \"Mobile\",\n                        \"province\": \"Alabama\",\n                        \"country\": \"United States\",\n                        \"postal_code\": \"36525\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 767436,\n                        \"phone_number\": \"223-745-9783\"\n                    },\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 6439728,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiI0MjMzODkwIiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.fC0KR7TF3Bdo3lr9FRQ2m0axb_IF3u4pkJsluf2fLtc\",\n                \"business\": {\n                    \"id\": 1962882,\n                    \"name\": \"Marshall Johnston\",\n                    \"account_id\": \"LJZ1p4\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2416464,\n                        \"street\": \"2 Gladstone Ave.\",\n                        \"city\": \"Toronto\",\n                        \"province\": \"Ontario\",\n                        \"country\": \"Canada\",\n                        \"postal_code\": \"M6J0B2\"\n                    },\n                    \"phone_number\": {\n                        \"id\": 944268,\n                        \"phone_number\": \"416-436-8583\"\n                    },\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 6446238,\n                \"role\": \"business_partner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiI0MjM2NDEwIiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.YmpVLa262YNgC5YbEW0LLLPYywJJ8BF_Dzc61JykL-0\",\n                \"business\": {\n                    \"id\": 1966214,\n                    \"name\": \"Postman Sandbox\",\n                    \"account_id\": \"wkMd2g\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2421054,\n                        \"street\": null,\n                        \"city\": null,\n                        \"province\": null,\n                        \"country\": \"Canada\",\n                        \"postal_code\": null\n                    },\n                    \"phone_number\": null,\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 6487858,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiI0MjUxNTQwIiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.S7OjD1kSh38EqHswdO2ow-QyFIx32HPG_N_dfAZj0qU\",\n                \"business\": {\n                    \"id\": 1986556,\n                    \"name\": \"Caroline's Corral\",\n                    \"account_id\": \"3x62x2\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2448954,\n                        \"street\": null,\n                        \"city\": null,\n                        \"province\": null,\n                        \"country\": \"Canada\",\n                        \"postal_code\": null\n                    },\n                    \"phone_number\": null,\n                    \"business_clients\": []\n                }\n            },\n            {\n                \"id\": 6487912,\n                \"role\": \"owner\",\n                \"unacknowledged_change\": false,\n                \"fasttrack_token\": \"eyJhbGciOiJIUzI1NiJ9.eyJmYXN0dHJhY2tfaWRlbnRpdHlfaWQiOiIzNzI1NiIsImZhc3R0cmFja19zeXN0ZW1faWQiOiI0MjUxNTY2IiwiY3JlYXRlZF9hdCI6IjIwMTktMDUtMDhUMTk6MzE6MTcrMDA6MDAifQ.lFv_X5eynZ_fCgVQYezU_EViJBnNlfbU-nLxcw7ruJg\",\n                \"business\": {\n                    \"id\": 1986590,\n                    \"name\": \"Kevin's Corral\",\n                    \"account_id\": \"lwy0vG\",\n                    \"date_format\": \"mm/dd/yyyy\",\n                    \"address\": {\n                        \"id\": 2448988,\n                        \"street\": null,\n                        \"city\": null,\n                        \"province\": null,\n                        \"country\": \"Canada\",\n                        \"postal_code\": null\n                    },\n                    \"phone_number\": null,\n                    \"business_clients\": []\n                }\n            }\n        ],\n        \"identity_origin\": null,\n        \"roles\": [\n            {\n                \"id\": 32411,\n                \"role\": \"admin\",\n                \"systemid\": 2101193,\n                \"userid\": 1,\n                \"created_at\": \"2016-01-21T18:18:39Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/32411\"\n                },\n                \"accountid\": \"E86Qp\"\n            },\n            {\n                \"id\": 71277,\n                \"role\": \"client\",\n                \"systemid\": 2262093,\n                \"userid\": 270493,\n                \"created_at\": \"2016-09-22T18:28:55Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/71277\"\n                },\n                \"accountid\": \"Ex8B1\"\n            },\n            {\n                \"id\": 71282,\n                \"role\": \"client\",\n                \"systemid\": 2618413,\n                \"userid\": 23360,\n                \"created_at\": \"2016-09-22T18:33:13Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/71282\"\n                },\n                \"accountid\": \"kyRVK\"\n            },\n            {\n                \"id\": 196335,\n                \"role\": \"staff\",\n                \"systemid\": 2537204,\n                \"userid\": 235430,\n                \"created_at\": \"2017-01-27T15:40:33Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/196335\"\n                },\n                \"accountid\": \"RnPKp\"\n            },\n            {\n                \"id\": 313786,\n                \"role\": \"client\",\n                \"systemid\": 2259081,\n                \"userid\": 316723,\n                \"created_at\": \"2017-04-14T16:10:55Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/313786\"\n                },\n                \"accountid\": \"owGZ6\"\n            },\n            {\n                \"id\": 556901,\n                \"role\": \"admin\",\n                \"systemid\": 3076347,\n                \"userid\": 1,\n                \"created_at\": \"2017-10-13T13:30:22Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/556901\"\n                },\n                \"accountid\": \"0XaOw\"\n            },\n            {\n                \"id\": 575202,\n                \"role\": \"admin\",\n                \"systemid\": 3091183,\n                \"userid\": 1,\n                \"created_at\": \"2017-10-30T16:06:19Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/575202\"\n                },\n                \"accountid\": \"7lwxr\"\n            },\n            {\n                \"id\": 575566,\n                \"role\": \"admin\",\n                \"systemid\": 3091468,\n                \"userid\": 1,\n                \"created_at\": \"2017-10-30T19:48:44Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/575566\"\n                },\n                \"accountid\": \"4VMVg\"\n            },\n            {\n                \"id\": 624370,\n                \"role\": \"business_partner\",\n                \"systemid\": 3006975,\n                \"userid\": 202432,\n                \"created_at\": \"2017-12-07T19:39:30Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/624370\"\n                },\n                \"accountid\": \"gjndR\"\n            },\n            {\n                \"id\": 636097,\n                \"role\": \"admin\",\n                \"systemid\": 3138164,\n                \"userid\": 1,\n                \"created_at\": \"2017-12-15T19:05:41Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/636097\"\n                },\n                \"accountid\": \"x33xX\"\n            },\n            {\n                \"id\": 662351,\n                \"role\": \"admin\",\n                \"systemid\": 3158909,\n                \"userid\": 1,\n                \"created_at\": \"2018-01-09T15:54:08Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/662351\"\n                },\n                \"accountid\": \"e1yRq\"\n            },\n            {\n                \"id\": 676036,\n                \"role\": \"admin\",\n                \"systemid\": 3169984,\n                \"userid\": 1,\n                \"created_at\": \"2018-01-17T16:24:24Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/676036\"\n                },\n                \"accountid\": \"3eRwB\"\n            },\n            {\n                \"id\": 677794,\n                \"role\": \"client\",\n                \"systemid\": 2557515,\n                \"userid\": 338717,\n                \"created_at\": \"2018-01-18T15:21:26Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/677794\"\n                },\n                \"accountid\": \"X744K\"\n            },\n            {\n                \"id\": 690736,\n                \"role\": \"business_employee\",\n                \"systemid\": 3014062,\n                \"userid\": 230198,\n                \"created_at\": \"2018-01-25T15:13:08Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/690736\"\n                },\n                \"accountid\": \"apw1A\"\n            },\n            {\n                \"id\": 750173,\n                \"role\": \"admin\",\n                \"systemid\": 3229028,\n                \"userid\": 1,\n                \"created_at\": \"2018-02-23T18:00:31Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/750173\"\n                },\n                \"accountid\": \"8nPPA\"\n            },\n            {\n                \"id\": 758981,\n                \"role\": \"admin\",\n                \"systemid\": 3235461,\n                \"userid\": 1,\n                \"created_at\": \"2018-02-28T15:54:51Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/758981\"\n                },\n                \"accountid\": \"j1322\"\n            },\n            {\n                \"id\": 759025,\n                \"role\": \"business_partner\",\n                \"systemid\": 767834,\n                \"userid\": 580126,\n                \"created_at\": \"2018-02-28T16:16:26Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/759025\"\n                },\n                \"accountid\": \"rALYo\"\n            },\n            {\n                \"id\": 895989,\n                \"role\": \"admin\",\n                \"systemid\": 3335607,\n                \"userid\": 1,\n                \"created_at\": \"2018-04-11T18:24:58Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/895989\"\n                },\n                \"accountid\": \"M1OaR\"\n            },\n            {\n                \"id\": 902859,\n                \"role\": \"business_partner\",\n                \"systemid\": 3331965,\n                \"userid\": 34217,\n                \"created_at\": \"2018-04-13T14:28:06Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/902859\"\n                },\n                \"accountid\": \"B3AVo\"\n            },\n            {\n                \"id\": 908131,\n                \"role\": \"admin\",\n                \"systemid\": 3344949,\n                \"userid\": 1,\n                \"created_at\": \"2018-04-15T15:38:50Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/908131\"\n                },\n                \"accountid\": \"E3MAY\"\n            },\n            {\n                \"id\": 940691,\n                \"role\": \"admin\",\n                \"systemid\": 3367995,\n                \"userid\": 1,\n                \"created_at\": \"2018-04-25T15:26:47Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/940691\"\n                },\n                \"accountid\": \"M1GeK\"\n            },\n            {\n                \"id\": 998423,\n                \"role\": \"admin\",\n                \"systemid\": 3408183,\n                \"userid\": 1,\n                \"created_at\": \"2018-05-14T17:52:53Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/998423\"\n                },\n                \"accountid\": \"7PO26\"\n            },\n            {\n                \"id\": 1046339,\n                \"role\": \"admin\",\n                \"systemid\": 3445027,\n                \"userid\": 1,\n                \"created_at\": \"2018-05-30T17:06:15Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1046339\"\n                },\n                \"accountid\": \"ZAZdo\"\n            },\n            {\n                \"id\": 1189037,\n                \"role\": \"business_employee\",\n                \"systemid\": 3530091,\n                \"userid\": 73757,\n                \"created_at\": \"2018-07-16T14:04:13Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1189037\"\n                },\n                \"accountid\": \"0PJMZ\"\n            },\n            {\n                \"id\": 1220739,\n                \"role\": \"business_partner\",\n                \"systemid\": 2605088,\n                \"userid\": 307345,\n                \"created_at\": \"2018-07-26T14:17:56Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1220739\"\n                },\n                \"accountid\": \"J7nAK\"\n            },\n            {\n                \"id\": 1356857,\n                \"role\": \"admin\",\n                \"systemid\": 3677205,\n                \"userid\": 1,\n                \"created_at\": \"2018-09-06T14:23:42Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1356857\"\n                },\n                \"accountid\": \"Ee0nZ\"\n            },\n            {\n                \"id\": 1361235,\n                \"role\": \"admin\",\n                \"systemid\": 3680199,\n                \"userid\": 1,\n                \"created_at\": \"2018-09-07T14:49:28Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1361235\"\n                },\n                \"accountid\": \"pe6MW\"\n            },\n            {\n                \"id\": 1427159,\n                \"role\": \"admin\",\n                \"systemid\": 3727481,\n                \"userid\": 1,\n                \"created_at\": \"2018-09-27T18:14:12Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1427159\"\n                },\n                \"accountid\": \"oM6yL\"\n            },\n            {\n                \"id\": 1427269,\n                \"role\": \"client\",\n                \"systemid\": 2226270,\n                \"userid\": 436623,\n                \"created_at\": \"2018-09-27T18:33:31Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1427269\"\n                },\n                \"accountid\": \"26JzY\"\n            },\n            {\n                \"id\": 1427293,\n                \"role\": \"client\",\n                \"systemid\": 3484587,\n                \"userid\": 196165,\n                \"created_at\": \"2018-09-27T18:36:25Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1427293\"\n                },\n                \"accountid\": \"Y433O\"\n            },\n            {\n                \"id\": 1427305,\n                \"role\": \"client\",\n                \"systemid\": 3172891,\n                \"userid\": 269979,\n                \"created_at\": \"2018-09-27T18:38:28Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1427305\"\n                },\n                \"accountid\": \"05xly\"\n            },\n            {\n                \"id\": 1427311,\n                \"role\": \"client\",\n                \"systemid\": 2931919,\n                \"userid\": 294161,\n                \"created_at\": \"2018-09-27T18:39:35Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1427311\"\n                },\n                \"accountid\": \"VQAAG\"\n            },\n            {\n                \"id\": 1789450,\n                \"role\": \"admin\",\n                \"systemid\": 3997216,\n                \"userid\": 1,\n                \"created_at\": \"2019-01-15T19:42:19Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1789450\"\n                },\n                \"accountid\": \"dowQ0g\"\n            },\n            {\n                \"id\": 1949044,\n                \"role\": \"admin\",\n                \"systemid\": 4113412,\n                \"userid\": 1,\n                \"created_at\": \"2019-02-28T20:19:28Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/1949044\"\n                },\n                \"accountid\": \"yA0R2P\"\n            },\n            {\n                \"id\": 2120722,\n                \"role\": \"admin\",\n                \"systemid\": 4233890,\n                \"userid\": 1,\n                \"created_at\": \"2019-04-17T14:08:30Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/2120722\"\n                },\n                \"accountid\": \"LJZ1p4\"\n            },\n            {\n                \"id\": 2124362,\n                \"role\": \"business_partner\",\n                \"systemid\": 4236410,\n                \"userid\": 31004,\n                \"created_at\": \"2019-04-18T13:38:19Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/2124362\"\n                },\n                \"accountid\": \"wkMd2g\"\n            },\n            {\n                \"id\": 2146098,\n                \"role\": \"admin\",\n                \"systemid\": 4251540,\n                \"userid\": 1,\n                \"created_at\": \"2019-04-25T16:42:38Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/2146098\"\n                },\n                \"accountid\": \"3x62x2\"\n            },\n            {\n                \"id\": 2146130,\n                \"role\": \"admin\",\n                \"systemid\": 4251566,\n                \"userid\": 1,\n                \"created_at\": \"2019-04-25T16:51:20Z\",\n                \"links\": {\n                    \"destroy\": \"/service/auth/api/v1/users/role/2146130\"\n                },\n                \"accountid\": \"lwy0vG\"\n            }\n        ]\n    }\n}"
    }
  ]
}