> ## Documentation Index
> Fetch the complete documentation index at: https://docs.solo.one/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a furnishing policy by id.

> Fetch a single furnishing policy by id, scoped to a network.

Parameters
----
`policy_id` : `UUID`.
    Identifier of the furnishing policy to fetch.

`network_id` : `UUID`.
    Network scope for the lookup.

Returns
----
`result` : `FurnishingPolicyResult`.
    The matching furnishing policy.

Raises
----
`NotFoundError`.
    If no furnishing policy with the given id is visible within the
    given network scope.

Examples
-----
```
GET /networks/policies/furnishing/{policy_id}?network_id=...
```



## OpenAPI

````yaml GET /v1/networks/policies/furnishing/{policy_id}
openapi: 3.1.0
info:
  title: SOLO Network API
  version: v1
servers:
  - url: https://api.solo.one
    description: Production
  - url: https://api.sandbox.solo.one
    description: Sandbox
security: []
paths:
  /v1/networks/policies/furnishing/{policy_id}:
    get:
      tags:
        - Furnishing Policies
      summary: Get a furnishing policy by id.
      description: |-
        Fetch a single furnishing policy by id, scoped to a network.

        Parameters
        ----
        `policy_id` : `UUID`.
            Identifier of the furnishing policy to fetch.

        `network_id` : `UUID`.
            Network scope for the lookup.

        Returns
        ----
        `result` : `FurnishingPolicyResult`.
            The matching furnishing policy.

        Raises
        ----
        `NotFoundError`.
            If no furnishing policy with the given id is visible within the
            given network scope.

        Examples
        -----
        ```
        GET /networks/policies/furnishing/{policy_id}?network_id=...
        ```
      operationId: get_furnishing_policy_v1_networks_policies_furnishing__policy_id__get
      parameters:
        - name: policy_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Policy Id
        - name: network_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
            description: Network scope for the lookup.
            title: Network Id
          description: Network scope for the lookup.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FurnishingPolicyResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    FurnishingPolicyResult:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        entity_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Entity Id
        network_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Network Id
        name:
          type: string
          title: Name
        version:
          type: integer
          title: Version
        schema_version:
          type: string
          title: Schema Version
        source_default_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Source Default Slug
        active_on:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Active On
        deprecated_on:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Deprecated On
        policy_metadata:
          additionalProperties: true
          type: object
          title: Policy Metadata
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Updated At
      type: object
      required:
        - id
        - name
        - version
        - schema_version
      title: FurnishingPolicyResult
      description: A furnishing policy as returned by the REST API.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````