WatchDog Security MSP Portal API v1
  1. Node
WatchDog Security MSP Portal API v1
  • Node
    • List Node
      GET
    • Get Node
      GET
    • Create Node
      POST
    • Update Node
      PATCH
    • Delete Node
      DELETE
  • Role
    • List Permissions
      GET
    • List Roles
      GET
    • List Service Account Permissions
      GET
    • Get Role
      GET
    • Create Role
      POST
    • Update Role
      PATCH
    • Delete Role
      DELETE
  • MSP Employee
    • List MSP Employee
      GET
    • Get MSP Employee
      GET
    • Create MSP Employee
      POST
    • Resend MSP Invited Employee Activation Email
      POST
    • Reset MSP Employee 2FA
      PATCH
    • Update MSP Employee
      PATCH
    • Delete MSP Employee
      DELETE
  • Billing
    • List Available Packages
      GET
  • Managed Company
    • List Managed Company
      GET
    • Get Managed Company
      GET
    • Create Managed Company
      POST
    • Update Managed Company
      PATCH
    • Delete Managed Company
      DELETE
  1. Node

List Node

GET
/api/msp/nodes/

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200
application/json
Body

🟠403
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app-prod.watchdogsecurity.io/api/msp/nodes/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
[
    {
        "id": 69,
        "uid": "d439d359-62fc-44ba-87f1-c54ed0f3559d",
        "name": "Acme Corp",
        "is_parent_node": true
    },
    {
        "id": 72,
        "uid": "cb8b20f7-09dd-4eef-8f22-387027a2b0bd",
        "name": "North America",
        "is_parent_node": false
    },
    {
        "id": 73,
        "uid": "b0083770-f1e3-4077-a1af-f76ef1ef0ccf",
        "name": "Europe",
        "is_parent_node": false
    },
    {
        "id": 74,
        "uid": "1d42223a-41bd-410b-9df1-9ffd5ab4f257",
        "name": "Asia",
        "is_parent_node": false
    },
    {
        "id": 75,
        "uid": "07c41928-a6ba-405d-9872-5d74be234220",
        "name": "Africa",
        "is_parent_node": false
    }
]
Modified at 2025-12-31 00:16:38
Next
Get Node
Built with