---
title: "Get service desks"
method: GET
path: "/rest/servicedeskapi/servicedesk"
tags: ["Servicedesk"]
---

# Get service desks

`GET /rest/servicedeskapi/servicedesk`

This method returns all the service desks in the Jira Service Management instance that the user has permission to access. Use this method where you need a list of service desks or need to locate a service desk by name or keyword.

**Note:** This method will be slow if the instance has hundreds of service desks. If you want to fetch a single service desk by its ID, use [/rest/servicedeskapi/servicedesk/\{serviceDeskId\}](./#api-rest-servicedeskapi-servicedesk-servicedeskid-get) instead.

**[Permissions](#permissions) required**: Any

## Query parameters

- `start` integer
- `limit` integer

## Response `200`

Returns the service desks, on the specified page of the results.

- PagedDTOServiceDeskDTO
  - `_expands` string[]
  - `_links` PagedLinkDTO
    - `base` string, uri — Base URL for the REST API calls.
    - `context` string
    - `next` string, uri — REST API URL for the next page, if there is one.
    - `prev` string, uri — REST API URL for the previous page, if there is one.
    - `self` string, uri — REST API URL for the current page.
  - `isLastPage` boolean — Indicates if this is the last page of records (true) or not (false).
  - `limit` integer — Number of items to be returned per page, up to the maximum set for these objects in the current implementation.
  - `size` integer — Number of items returned in the page.
  - `start` integer — Index of the first item returned in the page.
  - `values` ServiceDeskDTO[] — Details of the items included in the page.
    - `_links` SelfLinkDTO
      - `self` string, uri
    - `id` string — ID of the service desk.
    - `projectId` string — ID of the peer project for the service desk.
    - `projectKey` string — Key of the peer project of the service desk.
    - `projectName` string — Name of the project and service desk.
    - `projectTypeKey` string — Key of the project type.

## Other responses

- `401` — Returned if the user is not logged in.
- `500` — Internal Server Error.

---

[API](https://skmtc.net/atlassian/apis/service-management-public-rest-api.md) · [All operations](https://skmtc.net/atlassian/apis/service-management-public-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/atlassian/service-management-public-rest-api/versions/d1dc1a13b783/schema)
