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
      • Ticketing and Concierge Configuration Overview
      • Ticket Filters
      • Concierge Integrations
        • ServiceNow Ticketing Integration Overview
        • ManageEngine Ticketing Integration Overview
        • Salesforce ServiceCloud Ticketing Integration Overview
        • Sysaid Ticketing Integration Overview
      • Ticketing Troubleshooting
    • Forms
    • Forms - Integration Specific Guides
    • 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
  • File Tickets
  • Behind the scenes
  • Ticket Notifications
  • Comment added to a ticket
  • Ticket is closed
  • Ticket Nudges
  • View Tickets
  • Add comments to tickets
  • Behind the scenes
  • Close Tickets
  • Behind the scenes
  • Reopen Tickets
Service ManagementConcierge & Ticketing Capabilities OverviewConcierge Integrations

ManageEngine Ticketing Integration Overview

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

Salesforce ServiceCloud Ticketing Integration Overview

Next
Built with

File Tickets

Behind the scenes

When the employee wants help with an issue that doesn’t ticket, Moveworks will provide the user utterance as the subject and description.

curl --location --request POST '{{base_url}}/api/v3/requests' \
--header 'Authorization: {{auth-token}}' \
--data-urlencode 'input_data={"request":{"subject": "Test ticket creation", "name": "I am having issues with my laptop", "id": "{{requestor_id}}"}}'

Optionally, the end-employees can choose to provide more details to the ticket & attachments, those will be served via the description.

The optional Attachments are added via a different endpoint.

curl --location --request POST '{{base_url}}/api/v3/requests/{{request_id}}/_uploads' \
--header 'Authorization: {{auth-token}}' \
--header 'Content-Type: multipart/form-data' \
--form 'addtoattachment="true"' \
--form 'filename=@"{{attachment_url}}"'

Ticket Notifications

Your users will also receive ticket notifications when:

Comment added to a ticket

Ticket is closed

Ticket Nudges

Our ticket nudge skill works to ensure that tickets are not lost in the shuffle by checking for ticket updates every 10 seconds. They are delivered when:
• Ticket state is New or In Progress
• Ticket has had no employee-facing comments for 3 days

Example end-employee notification nudge

View Tickets

Employees can check status of their tickets in real-time. We support the following query patterns:

  • View List of Tickets by Check Status

  • View Ticket by Subject Matter

    curl --location --request GET '{{base_url}}/api/v3/requests?input_data={"list_info":{"search_fields": {"requester.id": "{{requester_id}}"}}}' \
    --header 'Authorization: {{auth-token}}'
  • View Ticket by Ticket Number

    curl --location --request GET '{{base_url}}/api/v3/requests/{{request_id}}' \
    --header 'Authorization: {{auth-token}}'

Add comments to tickets

Behind the scenes

When the employee adds comment to a ticket, we will comment on behalf of the Moveworks accounts & add it as a note and set the status of the ticket to Open.

curl --location --request POST '{{base_url}}/api/v3/requests/{{request_id}}/notes?input_data={"request_note":{"description": "My VPN server is AWS.213.4 and facing security permission issues, please add me to the roster.", "show_to_requester": true}}' \
--header 'Authorization: {{auth-token}}'

Close Tickets

Behind the scenes

When the employee closes a ticket, we will call the /close endpoint that sets the ticket status to Closed and provide a default solution into the ticket.

curl --location --request PUT '{{base_url}}/api/v3/requests/{{request_id}}/notes?input_data={"request": {"closure_info": {"requester_ack_resolution": true, "closure_code": { "name": "success"}}}}' \
--header 'Authorization: {{auth-token}}'

Reopen Tickets

When the employee asks to re-open their ticket, they can always do so in-chat, Moveworks will set the ticket status to Open to reopen it.

curl --location --request POST '{{base_url}}/api/v3/requests/{{request_id}}/notes?input_data={"request": {"status": {"name": "Open"}}}' \
--header 'Authorization: {{auth-token}}'