SysAid EndUsers API

The EndUsers API from SysAid — 8 operation(s) for endusers.

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/sysaid-endusers-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 email required.

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

OpenAPI Specification

sysaid-endusers-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: SysAid REST ActionItems EndUsers API
  description: 'REST API for SysAid ITSM. Manage service records (incidents, requests, problems, changes), users (agents and end users), groups, companies, assets, configuration items (CIs), templates, attachments, webhooks (beta), and license manager records. Authentication uses Client Credentials to mint short-lived application access tokens. Source: https://developers.sysaid.com/'
  version: '1.0'
  contact:
    name: SysAid
    url: https://developers.sysaid.com/
servers:
- url: https://your-account.sysaidit.com
  description: SysAid tenant base URL (replace your-account)
security:
- BearerAuth: []
tags:
- name: EndUsers
paths:
  /getendusers:
    get:
      tags:
      - EndUsers
      summary: List end users (paginated)
      operationId: getEndUsers
      responses:
        '200':
          description: OK
  /createenduser:
    post:
      tags:
      - EndUsers
      summary: Create new end user
      operationId: createEndUser
      responses:
        '201':
          description: Created
  /getenduser:
    get:
      tags:
      - EndUsers
      summary: Retrieve end user by ID
      operationId: getEndUser
      responses:
        '200':
          description: OK
  /updateenduser:
    put:
      tags:
      - EndUsers
      summary: Update end user details
      operationId: updateEndUser
      responses:
        '200':
          description: OK
  /deleteenduser:
    delete:
      tags:
      - EndUsers
      summary: Remove end user permanently
      operationId: deleteEndUser
      responses:
        '204':
          description: Deleted
  /addendusertogroups:
    post:
      tags:
      - EndUsers
      summary: Add end user to groups
      operationId: addEndUserToGroups
      responses:
        '200':
          description: OK
  /removeenduserfromgroups:
    post:
      tags:
      - EndUsers
      summary: Remove end user from groups
      operationId: removeEndUserFromGroups
      responses:
        '200':
          description: OK
  /convertendusertoagent:
    post:
      tags:
      - EndUsers
      summary: Convert end user to agent
      operationId: convertEndUserToAgent
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'OAuth 2.0 Client Credentials grant: exchange client_id and client_secret at /generateaccesstoken for a short-lived access token (default 24h), then pass as "Authorization: Bearer <token>".'