ManageEngine ServiceDesk Plus Requests API

The Requests API from ManageEngine ServiceDesk Plus — 3 operation(s) for requests.

Operations 6

GET /app/{portal}/api/v3/requests List requests #
POST /app/{portal}/api/v3/requests Create a new request #
GET /app/{portal}/api/v3/requests/{request_id} Get a specific request #
PUT /app/{portal}/api/v3/requests/{request_id} Modify an existing request #
DELETE /app/{portal}/api/v3/requests/{request_id} Remove a request #
POST /app/{portal}/api/v3/requests/{request_id}/attachments Add a file attachment to a request #

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/servicedesk-plus-requests-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

servicedesk-plus-requests-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ManageEngine ServiceDesk Plus Cloud Requests API
  description: 'REST API v3 for ManageEngine ServiceDesk Plus Cloud. Documented at

    https://www.manageengine.com/products/service-desk/sdpod-v3-api/.

    Authentication uses OAuth 2.0. The base URL varies by datacenter

    (e.g. https://sdpondemand.manageengine.com) and the portal name is

    embedded in the path as /app/{portal}/api/v3/...

    '
  version: v3
servers:
- url: https://sdpondemand.manageengine.com
  description: US datacenter
- url: https://sdpondemand.manageengine.eu
  description: EU datacenter
- url: https://sdpondemand.manageengine.in
  description: India datacenter
security:
- oauth2: []
tags:
- name: Requests
paths:
  /app/{portal}/api/v3/requests:
    parameters:
    - in: path
      name: portal
      required: true
      schema:
        type: string
      description: Portal/organization name
    get:
      tags:
      - Requests
      summary: List requests
      operationId: listRequests
      responses:
        '200':
          description: List of requests
    post:
      tags:
      - Requests
      summary: Create a new request
      operationId: createRequest
      responses:
        '201':
          description: Request created
  /app/{portal}/api/v3/requests/{request_id}:
    parameters:
    - in: path
      name: portal
      required: true
      schema:
        type: string
    - in: path
      name: request_id
      required: true
      schema:
        type: string
    get:
      tags:
      - Requests
      summary: Get a specific request
      operationId: getRequest
      responses:
        '200':
          description: Request details
    put:
      tags:
      - Requests
      summary: Modify an existing request
      operationId: updateRequest
      responses:
        '200':
          description: Request updated
    delete:
      tags:
      - Requests
      summary: Remove a request
      operationId: deleteRequest
      responses:
        '204':
          description: Request deleted
  /app/{portal}/api/v3/requests/{request_id}/attachments:
    parameters:
    - in: path
      name: portal
      required: true
      schema:
        type: string
    - in: path
      name: request_id
      required: true
      schema:
        type: string
    post:
      tags:
      - Requests
      summary: Add a file attachment to a request
      operationId: addRequestAttachment
      responses:
        '201':
          description: Attachment added
components:
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.zoho.com/oauth/v2/auth
          tokenUrl: https://accounts.zoho.com/oauth/v2/token
          scopes:
            SDPOnDemand.requests.ALL: Full access to requests
            SDPOnDemand.requests.READ: Read-only access to requests
            SDPOnDemand.requests.CREATE: Create requests
            SDPOnDemand.requests.UPDATE: Update requests
            SDPOnDemand.requests.DELETE: Delete requests