List registered built-in module pages for user-menu configuration.
using System.Net.Http.Headers;var client = new HttpClient();var request = new HttpRequestMessage{ Method = HttpMethod.Get, RequestUri = new Uri("https://example.com/api/workspace/admin/runtime-menus/module-pages"),};using (var response = await client.SendAsync(request)){ response.EnsureSuccessStatusCode(); var body = await response.Content.ReadAsStringAsync(); Console.WriteLine(body);}const url = 'https://example.com/api/workspace/admin/runtime-menus/module-pages';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/workspace/admin/runtime-menus/module-pagesKnown pages remain in the catalog while their owning module is disabled. Such pages may be saved but are unavailable at runtime until the module is enabled.
Authorizations
Section titled “Authorizations”- None
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Optional access token for clients that cannot set Authorization headers. Prefer Authorization: Bearer <token> when possible.
Responses
Section titled “Responses”OK
object
One built-in module page available for Runtime Menu configuration.
object
Stable page code stored by Runtime Menu configuration.
Localized page display name.
MDI icon name.
Display order inside the owning module.
Owning module key.
WebApp named-route contract returned by runtime resolution.
Whether the owning module is enabled.
Whether the page can currently resolve at runtime.
Static workspace permission prerequisites.
Whether this stable page code is deprecated.
Optional stable replacement page code.
object
object
object
object
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}Forbidden
object
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example", "instance": "example"}