...
Method | URL | Scope | Purpose | |
|---|---|---|---|---|
GET |
|
| Returns the active path allowlist. | |
GETPOST |
|
| Existence check for a file or directory under the allowlist. | Add a search path to the persistent allowlist. Body: |
DELETEPOST |
|
| Begin a chunked upload; returns a transfer ID. | |
POST |
|
| Upload one chunk of an in-progress transfer. | |
Remove a search path from the persistent allowlist. Body: | ||||
GET | POST |
|
| Finalize a chunked uploadExistence check for a file or directory under the allowlist. |
POST |
|
| Cancel an in-progress Begin a chunked upload; returns a transfer ID. | |
POST |
|
| Upload one chunk of an in-progress transfer. | |
POST |
|
| Finalize a chunked upload. | |
POST |
|
| Cancel an in-progress chunked upload. | |
POST |
|
| Single-shot upload for files under 4 MB. | |
POST |
|
| Begin a chunked download; returns a transfer ID. | |
POST |
|
| Read one chunk of an in-progress download. | |
POST |
|
| Finalize a chunked download. | |
POST |
|
| Cancel an in-progress chunked download. | |
GET |
|
| Pre-flight size check for a downloadable file. | |
POST |
|
| Delete a solution from the installation. Privileged. |
...
The OpenAPI endpoint stays reachable even when the activation gate is OFF, so downstream tooling can introspect the surface before operators flip the gate.
The OpenAPI document advertises base URLs via its servers[] array. By default this array is empty — client generators and Swagger UI then fall back to the host that served the document, which is correct in most local-network deployments. If the OpenAPI document will be consumed away from the API host (developer portals, partner SDK distributions, or reverse-proxy fronts where the externally-reachable hostname differs from the listener), populate SolutionCenterApi.PublicBaseUrls in TWebServices.json with the canonical external URL(s) — one entry per URL — so generated clients and rendered docs target the right host.
...