Sim

Jira Service Management

Interact with Jira Service Management

Usage Instructions

Integrate with Jira Service Management for IT service management. Create and manage service requests, handle customers and organizations, track SLAs, and manage queues.

Tools

jsm_get_service_desks

Get all service desks from Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
serviceDesksjsonArray of service desks
totalnumberTotal number of service desks
isLastPagebooleanWhether this is the last page

jsm_get_request_types

Get request types for a service desk in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to get request types for
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
requestTypesjsonArray of request types
totalnumberTotal number of request types
isLastPagebooleanWhether this is the last page

jsm_create_request

Create a new service request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to create the request in
requestTypeIdstringYesRequest Type ID for the new request
summarystringYesSummary/title for the service request
descriptionstringNoDescription for the service request
raiseOnBehalfOfstringNoAccount ID of customer to raise request on behalf of

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdstringCreated request issue ID
issueKeystringCreated request issue key (e.g., SD-123)
requestTypeIdstringRequest type ID
serviceDeskIdstringService desk ID
successbooleanWhether the request was created successfully
urlstringURL to the created request

jsm_get_request

Get a single service request from Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)

Output

ParameterTypeDescription
tsstringTimestamp of the operation

jsm_get_requests

Get multiple service requests from Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringNoFilter by service desk ID
requestOwnershipstringNoFilter by ownership: OWNED_REQUESTS, PARTICIPATED_REQUESTS, ORGANIZATION, ALL_REQUESTS
requestStatusstringNoFilter by status: OPEN, CLOSED, ALL
searchTermstringNoSearch term to filter requests
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
requestsjsonArray of service requests
totalnumberTotal number of requests
isLastPagebooleanWhether this is the last page

jsm_add_comment

Add a comment (public or internal) to a service request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
bodystringYesComment body text
isPublicbooleanYesWhether the comment is public (visible to customer) or internal

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
commentIdstringCreated comment ID
bodystringComment body text
isPublicbooleanWhether the comment is public
successbooleanWhether the comment was added successfully

jsm_get_comments

Get comments for a service request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
isPublicbooleanNoFilter to only public comments
internalbooleanNoFilter to only internal comments
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
commentsjsonArray of comments
totalnumberTotal number of comments
isLastPagebooleanWhether this is the last page

jsm_get_customers

Get customers for a service desk in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to get customers for
querystringNoSearch query to filter customers
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
customersjsonArray of customers
totalnumberTotal number of customers
isLastPagebooleanWhether this is the last page

jsm_add_customer

Add customers to a service desk in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to add customers to
emailsstringYesComma-separated email addresses to add as customers

Output

ParameterTypeDescription
tsstringTimestamp of the operation
serviceDeskIdstringService desk ID
successbooleanWhether customers were added successfully

jsm_get_organizations

Get organizations for a service desk in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to get organizations for
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
organizationsjsonArray of organizations
totalnumberTotal number of organizations
isLastPagebooleanWhether this is the last page

jsm_create_organization

Create a new organization in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
namestringYesName of the organization to create

Output

ParameterTypeDescription
tsstringTimestamp of the operation
organizationIdstringID of the created organization
namestringName of the created organization
successbooleanWhether the operation succeeded

jsm_add_organization_to_service_desk

Add an organization to a service desk in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to add the organization to
organizationIdstringYesOrganization ID to add to the service desk

Output

ParameterTypeDescription
tsstringTimestamp of the operation
serviceDeskIdstringService Desk ID
organizationIdstringOrganization ID added
successbooleanWhether the operation succeeded

jsm_get_queues

Get queues for a service desk in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
serviceDeskIdstringYesService Desk ID to get queues for
includeCountbooleanNoInclude issue count for each queue
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
queuesjsonArray of queues
totalnumberTotal number of queues
isLastPagebooleanWhether this is the last page

jsm_get_sla

Get SLA information for a service request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
slasjsonArray of SLA information
totalnumberTotal number of SLAs
isLastPagebooleanWhether this is the last page

jsm_get_transitions

Get available transitions for a service request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
transitionsjsonArray of available transitions

jsm_transition_request

Transition a service request to a new status in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
transitionIdstringYesTransition ID to apply
commentstringNoOptional comment to add during transition

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
transitionIdstringApplied transition ID
successbooleanWhether the transition was successful

jsm_get_participants

Get participants for a request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
participantsjsonArray of participants
totalnumberTotal number of participants
isLastPagebooleanWhether this is the last page

jsm_add_participants

Add participants to a request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
accountIdsstringYesComma-separated account IDs to add as participants

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
participantsjsonArray of added participants
successbooleanWhether the operation succeeded

jsm_get_approvals

Get approvals for a request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
startnumberNoStart index for pagination (default: 0)
limitnumberNoMaximum results to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
approvalsjsonArray of approvals
totalnumberTotal number of approvals
isLastPagebooleanWhether this is the last page

jsm_answer_approval

Approve or decline an approval request in Jira Service Management

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
cloudIdstringNoJira Cloud ID for the instance
issueIdOrKeystringYesIssue ID or key (e.g., SD-123)
approvalIdstringYesApproval ID to answer
decisionstringYesDecision: "approve" or "decline"

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueIdOrKeystringIssue ID or key
approvalIdstringApproval ID
decisionstringDecision made (approve/decline)
successbooleanWhether the operation succeeded

Notes

  • Category: tools
  • Type: jira_service_management
On this page

On this page

Start building today
Trusted by over 60,000 builders.
Build Agentic workflows visually on a drag-and-drop canvas or with natural language.
Get started