Return safe build-toolchain, runtime-contract, and optional artifact compatibility.
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/ui-project/compatibility"),};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/ui-project/compatibility';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/ui-project/compatibilityAuthorizations
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
Safe Workspace UI build-toolchain and runtime compatibility status.
object
Whether checks and builds can use the packaged offline toolchain.
Whether publication can validate the packaged browser runtime contract.
Packaged toolchain runtime identifier.
Packaged Node version.
Current Workspace UI host contract version.
Current Workspace UI host contract fingerprint.
Current offline toolchain fingerprint.
Current immutable dependency versions.
object
Compatibility and lifecycle readiness for one stored artifact.
object
Artifact identifier.
Whether the artifact matches the current browser runtime contract.
Whether the artifact can be activated now.
Whether the artifact can be restored now.
Stable compatibility result code.
Safe localized diagnostics.
One safe Workspace UI compatibility diagnostic.
object
Stable diagnostic code without deployment details.
Localized operator-facing message.
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"}Not Found
object
Safe Workspace UI build-toolchain and runtime compatibility status.
object
Whether checks and builds can use the packaged offline toolchain.
Whether publication can validate the packaged browser runtime contract.
Packaged toolchain runtime identifier.
Packaged Node version.
Current Workspace UI host contract version.
Current Workspace UI host contract fingerprint.
Current offline toolchain fingerprint.
Current immutable dependency versions.
object
Compatibility and lifecycle readiness for one stored artifact.
object
Artifact identifier.
Whether the artifact matches the current browser runtime contract.
Whether the artifact can be activated now.
Whether the artifact can be restored now.
Stable compatibility result code.
Safe localized diagnostics.
One safe Workspace UI compatibility diagnostic.
object
Stable diagnostic code without deployment details.
Localized operator-facing message.
object
object
object
object
Example
{ "Errors": [ { "Type": 0, "Severity": 0 } ], "Warnings": [ { "Type": 0, "Severity": 0 } ]}