WatchDog Security MSP Portal API v1
  1. Billing
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. Billing

List Available Packages

GET
/api/msp/available-packages/

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/available-packages/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
[
    {
        "id": 25,
        "name": "NFR License",
        "package_type": "NFR",
        "price": 0.0,
        "content": "- WatchDog Security University\r\n- Software Security Posture Management\r\n- Cloud Security Posture Management\r\n- Phishing Simulation Platform",
        "license_count": 0,
        "available_licenses": 10
    },
    {
        "id": 22,
        "name": "MSP Protection Basic",
        "package_type": "MSP",
        "price": 1.99,
        "content": "- WD University\r\n- Security Benchmarks\r\n- Phishing",
        "license_count": 0,
        "available_licenses": null
    },
    {
        "id": 23,
        "name": "MSP Protection Standard",
        "package_type": "MSP",
        "price": 4.99,
        "content": "- WatchDog Security University\r\n- Cloud Security Posture Management\r\n- Software Security Posture Management\r\n- Phishing Simulation Platform",
        "license_count": 0,
        "available_licenses": null
    }
]
Modified at 2025-12-31 00:14:02
Previous
Delete MSP Employee
Next
List Managed Company
Built with