> ## 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.

# List furnishing policies in a network.

> List furnishing policies visible within a network scope.

Results are paginated with ``limit`` (1-100, default 20) and
``offset`` (>=0, default 0).

Parameters
----
`network_id` : `UUID`.
    Network scope for the listing.

`limit` : `int`.
    Maximum number of results. Defaults to 20.

`offset` : `int`.
    Number of results to skip. Defaults to 0.

Returns
----
`results` : `list[FurnishingPolicyResult]`.
    Page of matching furnishing policies.

Examples
-----
```
GET /networks/policies/furnishing?network_id=...&limit=10
```



## OpenAPI

````yaml GET /v1/networks/policies/furnishing
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:
    get:
      tags:
        - Furnishing Policies
      summary: List furnishing policies in a network.
      description: |-
        List furnishing policies visible within a network scope.

        Results are paginated with ``limit`` (1-100, default 20) and
        ``offset`` (>=0, default 0).

        Parameters
        ----
        `network_id` : `UUID`.
            Network scope for the listing.

        `limit` : `int`.
            Maximum number of results. Defaults to 20.

        `offset` : `int`.
            Number of results to skip. Defaults to 0.

        Returns
        ----
        `results` : `list[FurnishingPolicyResult]`.
            Page of matching furnishing policies.

        Examples
        -----
        ```
        GET /networks/policies/furnishing?network_id=...&limit=10
        ```
      operationId: list_furnishing_policies_v1_networks_policies_furnishing_get
      parameters:
        - name: network_id
          in: query
          required: true
          schema:
            type: string
            format: uuid
            description: Network scope for the listing.
            title: Network Id
          description: Network scope for the listing.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum number of results.
            default: 20
            title: Limit
          description: Maximum number of results.
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            description: Number of results to skip.
            default: 0
            title: Offset
          description: Number of results to skip.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FurnishingPolicyResult'
                title: >-
                  Response List Furnishing Policies V1 Networks Policies
                  Furnishing Get
        '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

````