Returns the Application's automatic-enrollment policy.
When none is configured, returns the editable defaults with `configured: false` so clients can render the editor prefilled. `configured` is also the precondition for setting either admission policy on the Network to `PROVISION`.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The owning Application id.
uuidThe tenant identifier
Response Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/networks/497f6eca-6276-4993-bfeb-53cbbbba6f08/provisioningPolicy"{
"networkId": "00000000-0000-0000-0000-000000000000",
"configured": false,
"environmentRule": "MATCH_LIST",
"environmentIds": [
"00000000-0000-0000-0000-000000000000"
],
"unmatchedFallback": "REQUEST_ACCESS",
"maxProvisionsPerHour": 0
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Creates a new, non-default Network.
Creates an operator-facing Network (never the Default). The new Network starts empty; Agents and Workflows select it when they are created. Applies immediately. A slug is derived from the name unless the request supplies one. A supplied slug is used exactly as given — it is the link the caller is choosing — so one already in use in the tenant is a 409 rather than a quietly suffixed alternative. Archived Applications still hold their slugs.
Returns what the Application's automatic-enrollment matcher has been doing.
Read-only companion to the policy above, kept a separate payload because that one is a full-replace PUT. `provisionedLastHour` counts over the same trailing hour and the same grant provenance the cap itself counts, so the two can never disagree. The pending counts break the queue down by which verdict put each sender there — refused by the allowlist, turned away by a spent cap, or queued because provisioning faulted — which are three different problems with three different fixes. Requests queued before those verdicts were recorded carry a sender-shaped reason and are not attributed to the matcher here.