---
title: "Gets the information about a Service Fabric partition."
method: GET
path: "/Partitions/{partitionId}"
tags: ["Partition"]
---

# Gets the information about a Service Fabric partition.

`GET /Partitions/{partitionId}`

Gets the information about the specified partition. The response includes the partition ID, partitioning scheme information, keys supported by the partition, status, health, and other details about the partition.

## Path parameters

- `partitionId` string, uuid, required

## Query parameters

- `api-version` '6.0', required
- `timeout` integer

## Response `200`

Information about the specified partition.

- ServicePartitionInfo — Information about a partition of a Service Fabric service.
  - `ServiceKind` 'Invalid' | 'Stateless' | 'Stateful', required — The kind of service (Stateless or Stateful).
  - `HealthState` 'Invalid' | 'Ok' | 'Warning' | 'Error' | 'Unknown' — The health state of a Service Fabric entity such as Cluster, Node, Application, Service, Partition, Replica etc.
  - `PartitionStatus` 'Invalid' | 'Ready' | 'NotReady' | 'InQuorumLoss' | 'Reconfiguring' | 'Deleting' — The status of the service fabric service partition.
  - `PartitionInformation` PartitionInformation — Information about the partition identity, partitioning scheme and keys supported by it.
    - `ServicePartitionKind` 'Invalid' | 'Singleton' | 'Int64Range' | 'Named', required — The kind of partitioning scheme used to partition the service.
    - `Id` string, uuid — An internal ID used by Service Fabric to uniquely identify a partition. This is a randomly generated GUID when the service was created. The partition ID is unique and does not change for the lifetime of the service. If the same service was deleted and recreated the IDs of its partitions would be different.

## Other responses

- `204` — An empty response is returned if the specified partitionId is not found in the cluster.
- `default` — The detailed error response.

---

[API](https://skmtc.net/azure/apis/service-fabric-client-apis.md) · [All operations](https://skmtc.net/azure/apis/service-fabric-client-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/service-fabric-client-apis/versions/6df9f2f4d542/schema)
