---
title: "Gets information on all Service Fabric properties under a given name."
method: GET
path: "/Names/{nameId}/$/GetProperties"
tags: ["Property Management"]
---

# Gets information on all Service Fabric properties under a given name.

`GET /Names/{nameId}/$/GetProperties`

A Service Fabric name can have one or more named properties that store custom information. This operation gets the information about these properties in a paged list. The information includes name, value, and metadata about each of the properties.

## Path parameters

- `nameId` string, required

## Query parameters

- `api-version` '6.0', required
- `IncludeValues` boolean
- `ContinuationToken` string
- `timeout` integer

## Response `200`

A paged list of Service Fabric properties.

- PagedPropertyInfoList — The paged list of Service Fabric properties under a given name. The list is paged when all of the results cannot fit in a single message. The next set of results can be obtained by executing the same query with the continuation token provided in this list.
  - `ContinuationToken` string — The continuation token parameter is used to obtain next set of results. The continuation token is included in the response of the API when the results from the system do not fit in a single response. When this value is passed to the next API call, the API returns next set of results. If there are no further results, then the continuation token is not included in the response.
  - `IsConsistent` boolean — Indicates whether any property under the given name has been modified during the enumeration. If there was a modification, this property value is false.
  - `Properties` PropertyInfo[] — List of property information.
    - `Name` string, required — The name of the Service Fabric property.
    - `Value` PropertyValue — Describes a Service Fabric property value.
      - `Kind` 'Invalid' | 'Binary' | 'Int64' | 'Double' | 'String' | 'Guid', required — The kind of property, determined by the type of data. Following are the possible values.
    - `Metadata` PropertyMetadata, required — The metadata associated with a property, including the property's name.
      - `TypeId` 'Invalid' | 'Binary' | 'Int64' | 'Double' | 'String' | 'Guid' — The kind of property, determined by the type of data. Following are the possible values.
      - `CustomTypeId` string — The property's custom type ID. Using this property, the user is able to tag the type of the value of the property.
      - `Parent` string — The Service Fabric name, including the 'fabric:' URI scheme.
      - `SizeInBytes` integer — The length of the serialized property value.
      - `LastModifiedUtcTimestamp` string, date-time — Represents when the Property was last modified. Only write operations will cause this field to be updated.
      - `SequenceNumber` string — The version of the property. Every time a property is modified, its sequence number is increased.

## Other responses

- `default` — The detailed error response.

---

[API](https://skmtc.net/azure/apis/servicefabric-servicefabric.md) · [All operations](https://skmtc.net/azure/apis/servicefabric-servicefabric/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/servicefabric-servicefabric/revisions/8fd479ce0f16/schema)
