Hacware Group API

The Group API from Hacware — 12 operation(s) for group.

Operations 12

POST /api/v1/security_groups/delete Delete Synced MS Group #
GET /api/v1/group/grouplist/ Get Group List #
GET /api/v1/security_groups/members Get Microsoft Security Group Members #
GET /api/v1/security_groups/list Get Microsoft Security Groups #
GET /api/v1/security_groups/synclist Get Synced MS Group #
POST /api/v1/group/add/ Add a Group #
POST /api/v1/group/add_group_member/ Add a User to a Group #
POST /api/v1/group/delete/ Delete a Group #
POST /api/v1/group/delete_group_member/ Delete a User from Group #
POST /api/v1/security_groups/update Update Microsoft Security Group Users #
POST /api/v1/group/update/ Update a Group #
POST /api/v1/group/update_group_member/ Update a User's Group #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/hacware-group-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

hacware-group-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Security Awareness API Documentation Admin Group API
  description: This API documentation explains how to build your own AI powered security awareness and training application. HacWare is an AI-powered security awareness training and phishing simulation platform. This OpenAPI was derived by API Evangelist from HacWare's published apiDoc documentation.
  version: 1.0.4
  contact:
    name: HacWare
    email: hello@hacware.com
    url: https://hacware.com/dev.html
  termsOfService: https://hacware.com/terms-of-service
servers:
- url: https://{domain}
  description: Per-tenant HacWare API host; {domain} is the subdomain assigned to your company at onboarding.
  variables:
    domain:
      default: app.hacware.com
tags:
- name: Group
paths:
  /api/v1/security_groups/delete:
    post:
      operationId: DelMicrosoftSecurityGroups
      summary: Delete Synced MS Group
      description: Deletes the current synced Microsoft Security Group tied to certain HacWare user licenses.
      tags:
      - Group
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/grouplist/:
    get:
      operationId: GetGroupList
      summary: Get Group List
      description: Return a list of all the groups or a specific group in the account.
      tags:
      - Group
      parameters:
      - name: GroupName
        in: query
        schema:
          type: string
        description: Group Name. (Optional)
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/security_groups/members:
    get:
      operationId: GetMicrosoftSecurityGroupMembers
      summary: Get Microsoft Security Group Members
      description: Retrieves all HacWare user licenses synced to a Microsoft Security Group by using its id.
      tags:
      - Group
      parameters:
      - name: uid
        in: query
        schema:
          type: string
        description: Unique Microsoft Security Group ID to activate HacWare user licenses from. (Required)
        required: true
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/security_groups/list:
    get:
      operationId: GetMicrosoftSecurityGroups
      summary: Get Microsoft Security Groups
      description: Get all information from security groups connected to Microsoft for platforms on Outlook.
      tags:
      - Group
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/security_groups/synclist:
    get:
      operationId: GetMicrosoftSecurityGroupsSyncList
      summary: Get Synced MS Group
      description: Gets the current synced security group from Microsoft that is tied to certain HacWare user licenses.
      tags:
      - Group
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/add/:
    post:
      operationId: PostAddGroup
      summary: Add a Group
      description: Adds a new group to the account if it doesn't already exists.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                GroupName:
                  type: string
                  description: Group Name. (Required)
                GroupDesc:
                  type: string
                  description: Description of the group. (Required)
                GroupSymbol:
                  type: string
                  description: Symbol for the group. (Optional)
                GroupColor:
                  type: string
                  description: Color for the group icon. (Optional)
                GroupLeader:
                  type: string
                  description: User leader for the group. Identified by the user's email. (Optional)
              required:
              - GroupName
              - GroupDesc
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/add_group_member/:
    post:
      operationId: PostAddGroupMember
      summary: Add a User to a Group
      description: Adds a group to the user's document.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                UserEmail:
                  type: string
                  description: User's email (Required)
                GroupID:
                  type: string
                  description: Group ID. (Required)
              required:
              - UserEmail
              - GroupID
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/delete/:
    post:
      operationId: PostDeleteGroup
      summary: Delete a Group
      description: Deletes a group if it exists in the account.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                GroupID:
                  type: string
                  description: Group ID. (Required)
              required:
              - GroupID
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/delete_group_member/:
    post:
      operationId: PostDeleteGroupMember
      summary: Delete a User from Group
      description: Deletes a group from the user's document.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                UserEmail:
                  type: string
                  description: User's Email (Required)
                GroupID:
                  type: string
                  description: Group ID. (Required)
              required:
              - UserEmail
              - GroupID
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/security_groups/update:
    post:
      operationId: PostMicrosoftSecurityGroups
      summary: Update Microsoft Security Group Users
      description: Activates or deactivates all HacWare user licenses synced to a Microsoft Security Group by using its id.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                uid:
                  type: string
                  description: Unique Microsoft Security Group ID to activate HacWare user licenses from. (Required)
              required:
              - uid
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/update/:
    post:
      operationId: PostUpdateGroup
      summary: Update a Group
      description: Updates a group if it already exists in the account.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                GroupNameOld:
                  type: string
                  description: Old group name. (Required)
                GroupNameNew:
                  type: string
                  description: New Group name. (Optional)
                GroupDesc:
                  type: string
                  description: Description of the group. (Optional)
                GroupSymbol:
                  type: string
                  description: Symbol for the group. (Optional)
                GroupLeader:
                  type: string
                  description: User leader for the group. Identified by the user's email. (Optional)
              required:
              - GroupNameOld
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
  /api/v1/group/update_group_member/:
    post:
      operationId: PostUpdateGroupMembers
      summary: Update a User's Group
      description: Updates the group in the user's document. Only used when the symbol for the group has been changed.
      tags:
      - Group
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                UserEmail:
                  type: string
                  description: User's Email. (Required)
                GroupID:
                  type: string
                  description: Group ID. (Required)
                GroupSymbol:
                  type: string
                  description: The group symbol. (Required)
              required:
              - UserEmail
              - GroupID
              - GroupSymbol
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request. The error message describes the problem.
        '401':
          description: Unauthorized. Missing or invalid bearer token.
      security:
      - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer access token obtained from POST /api/v1/auth/ (exchange appid + secret key). Tokens expire ~1 hour after issue; use the refresh token to renew.
externalDocs:
  description: HacWare API Documentation
  url: https://www.hacware.com/doc/index.html