For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
DeveloperAcademyCommunityStatus
  • Service Management
    • Overview
    • Concierge & Ticketing Capabilities Overview
    • Forms
    • Forms - Integration Specific Guides
      • Forms Integration - ServiceNow
      • Forms Integration - Jira Service Desk
      • Forms Integration - Freshservice
      • Forms Integration - Wolken
      • Forms Integration - ManageEngine
    • Live Agent Chat / Handoff
    • Triage
    • Approval Mirroring
    • Ticket Interception
    • Generic Ticketing Integration: Ticket Gateway
  • Administration
    • MyMoveworks
    • Organization Information
    • Roles and Permissions
    • MyMoveworks SSO
  • Moveworks Setup
    • Accessing Moveworks Setup
    • First-Time Login via Magic Link
    • Moveworks Setup Modules
    • Moveworks Setup: Module How To Guides
    • Plugin Management
    • Monitor Alerts
    • Audit Logs
    • DSL Fields Defaults
    • Data Crawling View
    • API Playground
    • Setup Homepage
    • Troubleshooting Hub
    • Security and Privacy Settings
    • Configuration Delete
    • Advanced Config Editor
    • Identity configuration
    • Onboarding Stage
  • Security
    • Security
    • Hyperlink & Button Expiry
    • Attachment Handling
    • Moveworks Subprocessors
  • Provision Management
    • Overview
    • Access Software
    • Access Groups
    • Access Account
  • Access Requirements
    • Overview
    • Update Set Modules
    • Ticketing Systems & ITSMs Access
    • Identity and Access Management Systems Access
    • Multi-Factor Authentication (MFA) Systems Access
    • Knowledge Access Requirements
    • Email Distribution List Systems Access
    • Facilities Management Access
    • Live Agent Chat Access
    • HR Information System Access
    • Expense Management Access
    • Calendar Management Access
  • Core Platform
    • User Identity
    • Moveworks On-Prem Agent
    • Approvals Engine
    • Entity Catalog
    • Configuration Languages
    • Moveworks Data Objects
    • SIEM
  • Employee Experience Insights
    • Overview
    • Breaking Down the Dashboard
    • Understanding Industry Benchmarks
    • Apps & Services
    • Impact Module
    • EXI Common Use Cases
    • Configure EXI
    • Ticket Backpolling
  • Knowledge Studio
    • Overview
    • Knowledge Studio Configuration
    • AI Powered Recommendations
    • Inspecting & Verifying Sources
    • Publishing Articles
    • Creating Knowledge Articles
    • Resolving IT Tickets Guidance
DeveloperAcademyCommunityStatus
On this page
  • Overview
  • Permission Required
  • Form Ingestion
  • Form Finding
  • Form Filling
  • Architecture
  • Supported Field Types
  • FAQ
  • Q: Does Moveworks support request templates that contain mandatory attachments?
  • Q: Does Moveworks support request templates with no fields present in them other than the requester field?
  • Q: Does Moveworks support request templates with fields that are present in the template but containing no metadata?
  • Q: We are changing the menu templates and moveworks may need to look up and present options to end users a different way once we update the templates. What issues would happen if our organization changes the template menus in Manage Engine.
Service ManagementForms - Integration Specific Guides

Forms Integration - ManageEngine

||View as Markdown|
Was this page helpful?
Edit this page
Previous

Live Agent Chat / Handoff

Next
Built with

Overview

ManageEngine forms and request templates are incredibly powerful when combined with Moveworks’ Smart Forms. You can use them together to:

  • Enable powerful automations, by leveraging ManageEngine ServiceDesk Automation.
  • Trigger custom approval workflows.
  • Structure inputs from your employees.

Permission Required

Moveworks will use the existing service account created in ManageEngine for fetching the forms from your instance.

Form Ingestion

Forms are referred to as request_templates under the Service Catalog in ManageEngine. Moveworks will ingest all request templates that are available in the Service Catalog.

Form Finding

To fetch all the request templates, we use the following API: GET https://{manageengine_url}/api/v3/request_templates

To fetch additional details about a single request template, we use the following API: GET https://{manageengine_url}/api/v3/request_templates/{request_template_id}

Form Filling

To create a request using the form fields of a request template, we use the following API: POST https://{manageengine_url}/api/v3/requests , with the following body:

1Body: x-www-form-urlencoded
2input_data: {
3 "request": {
4 "template": {
5 "id": "{template_id}"
6 },
7 "requester": {
8 "id": "{requester_id}"
9 }
10 "request_template_task_ids": [],
11 "subcategory": null,
12 "item": null,
13 "subject": "{subject_string}",
14 "description": "{description_string}",
15 "email_ids_to_notify": [],
16 "created_time": {created_time},
17 "due_by_time": {due_by_time},
18 "attachments": []
19 }
20 }

Architecture

Supported Field Types

IntegrationExternal Field TypesMoveworks Type
ManageEnginestringText: Multi-line
ManageEnginehtmlHTML
ManageEnginelookupDropdown: Single
ManageEnginebooleanBINARY
ManageEngineintText: Numerical
ManageEnginelongText: Numerical
ManageEnginedoubleText: Numerical
ManageEnginedatetimeDatetime
ManageEngineudfUnsupported
ManageEngineunknownUnsupported
ManageEnginegroupUnsupported

FAQ

Q: Does Moveworks support request templates that contain mandatory attachments?

A: No, not at the moment.

Q: Does Moveworks support request templates with no fields present in them other than the requester field?

A: No, not at the moment.

Q: Does Moveworks support request templates with fields that are present in the template but containing no metadata?

A: No, not at the moment.

Q: We are changing the menu templates and moveworks may need to look up and present options to end users a different way once we update the templates. What issues would happen if our organization changes the template menus in Manage Engine.

A: Request templates are forms from Manage Engine, with Moveworks form ingestion any changes will be automatically ingested