Fortinet Service Graph Connector API Endpoints

  • Release version: Australia
  • Updated June 16, 2026
  • 1 minute to read
  • The Service Graph Connector for Fortinet integrates Fortinet Dashboard API data into ServiceNow AI PlatformConfiguration Management Database (CMDB). This document details the API endpoints used and how data flows through the system.

    Note:
    The meta fields values in the ADOM and device requests are configurable. Define the meta field names that match your Fortinet deployment. If you don't configure any meta fields, the connector omits the meta fields parameter from the request, and Fortinet returns standard data. The values shown in the following examples are sample meta fields and are required for discovery.
    Table 1. API reference examples
    Description API response
    Authenticate JSON-RPC session
    { "method": "exec", "params": [ { "url": "/sys/login/user", "data": { "user": "user", "passwd": "abc1123" } } ], "verbose": 1 }
    Logout JSON-RPC session
    { "method": "exec", "params": [ { "url": "/sys/logout" } ], "verbose": 1, "session": "TxMw/zbjw+tVZ/JL3bhmYg0vTUpVguYHIQesJXpye4j2vvsqtZaSgKWa+0iLqug+3/074jq8QqmI/KOx4GHkwQ==" }
    GET ADOMs
    { "method": "get", "params": [ { "url": "/dvmdb/adom", "meta fields": [ "VF SDWAN Service Provided", "VF OpCo Name", "VF Customer ID", "SERVICE_ID", "SDN_MS" ] } ], "verbose": 1, "session": "TxMw/zbjw+tVZ/JL3bhmYg0vTUpVguYHIQesJXpye4j2vvsqtZaSgKWa+0iLqug+3/074jq8QqmI/KOx4GHkwQ==" }
    GET ADOM devices
    { "method": "get", "params": [ { "url": "/dvmdb/adom/{ADOM_NAME}/device", "meta fields": [ "Company/Organization", "VF 3C Ref", "Address", "Contact Email", "Contact Phone Number", "VF Order Ref" ] } ], "verbose": 1, "session": "TxMw/zbjw+tVZ/JL3bhmYg0vTUpVguYHIQesJXpye4j2vvsqtZaSgKWa+0iLqug+3/074jq8QqmI/KOx4GHkwQ==" }
    GET interfaces by device name
    { "method": "get", "params": [ { "url": "/dbcache/system/interface", "option": [ "scope member" ], "scope member": [ { "name": "{DEVICE_NAME}", "vdom": "global" } ], "fields": [ "name", "alias", "comments", "speed", "mediatype", "ip", "mode", "type", "mtu", "interface", "vlanid", "member", "vdom", "role", "allowaccess", "zone", "mac", "status" ], "current_adom": "{ADOM_NAME}" } ], "verbose": 1, "session": "TxMw/zbjw+tVZ/JL3bhmYg0vTUpVguYHIQesJXpye4j2vvsqtZaSgKWa+0iLqug+3/074jq8QqmI/KOx4GHkwQ==" }