Personal WiFi Docs
  • Getting Started
  • WiFi Integration
    • Summary of supported WiFi vendors
      • Cisco Meraki
        • Meraki oAuth integration
      • Cisco Catalyst WLC (IOS-XE)
      • Cisco Meraki Easy PSK
      • Aruba - Unbound MPSK
      • Fortinet (FortiGate Secure Wireless Controller)
      • Extreme Networks
      • Ruckus SmartZone
      • Cambium cnMaestro
      • Juniper (Mist)
      • TP-Link Omada
      • Huawei - iMaster NCE-Campus
  • Service management
    • Dashboard
    • Managing Accounts
    • Groups
    • Managing Networks
      • Network Managers
    • Units
    • General options
      • Personal Area Networks (PAN)
      • Service Options
      • Organization details
    • Network Policies
    • WiFi Portal & Onboarding
      • Access Control options
      • WiFi Portal options
      • IoT Devices Authentication
      • WiFi Portal distribution
    • Visitors (beta)
    • Admins
      • Multi Organizations
    • Account settings
    • My Profile
    • Support platforms integrations
    • Service Monitoring and Assurance
      • Anomalies
      • Activity Logs
      • Network Health
  • Cloud Identity Platforms integrations
    • Coworking management platforms
      • Optix
      • Office RnD
      • Nexudus
      • Andcards
    • Property Management Systems
      • Oracle Opera Cloud
      • Mews
      • Cloudbeds
      • Apaleo
      • StarRez
    • Enterprise cloud IdPs
      • Microsoft Entra ID (SAML)
      • Microsoft Entra ID (oAuth)
      • Google Workspace (oAuth)
      • Shibboleth
      • Group mapping
    • Passwordless SSO
      • Custom HTTP Request
  • MSP Operations
    • MSP Dashboard
    • MSP Account settings
  • Add-ons
    • Billing
    • White label
    • Passpoint
    • SMS Services - via Twilio
  • APIs
    • Getting Started
    • Account management
  • PRODUCT
    • Coming soon...
      • Engenius Cloud
      • Zyxel Nebula (Pro)
    • Changelog
    • Datasheet
  • Solution guides
    • Student living
      • Sample FAQ: WiFi for the Resident Hall
    • BYOD
Powered by GitBook
On this page

Was this helpful?

  1. APIs

Getting Started

PreviousSMS Services - via TwilioNextAccount management

Last updated 6 months ago

Was this helpful?

The Account Management API allows Cusna partners and customers or third-party systems to programmatically manage Accounts data in Cusna dashboard. Using the Account management API eliminates the need for property staff to manually enter data in the the dashboard.

Base URL

All API requests must use the following base URL:

https://www.cusna.io/api/1.1

Authentication

To make API call you need an Access Token.

To get the Access Token make a request to the Auth endpoint

Authenticate API requests by adding in the header the parameter

Authorization: Barear <token>

Organization ID

For some APIs, you need to provide your organization ID. YoOu can find the Organization ID in the Account page.

  • Base URL
  • Authentication
  • POST/auth
  • Organization ID
post

Get Token

Body
passwordstringOptional
emailstringOptional
Responses
200
Get Token
application/json
post
POST /api/1.1/wf/auth HTTP/1.1
Host: www.cusna.io
Content-Type: application/json
Accept: */*
Content-Length: 70

"{\n    \"email\":\"emailaddress\",\n    \"password\":\"password\"\n}"
200

Get Token

{
    "status": "success",
    "response": {
        "token": "1654618732137x551553604128404800",
        "user_id": "1653502412695x910867020641148200",
        "expires": 31536000
    }
}