Policies
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
GET
List furnishing policies in a network.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Network scope for the listing.
Maximum number of results.
Required range:
1 <= x <= 100Number of results to skip.
Required range:
x >= 0Response
Successful Response
Previous
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=...
```
Next
List furnishing policies in a network.