Skip to main content
⚠️ Archived Version

You are viewing documentation for Preflight version 1.26, which is no longer actively maintained. For the latest features and updates, please refer to the current version (2.0).

Build Info

You can get the version, build date, build configuration, and application name by using the GET, HEAD ~/api/info endpoint. You may need these details when contacting our support team.

Example call

const info = async () => {
const response = await fetch(appUrl + "api/info");
console.log(await response.json());
};

Success response

Status Code: 200 OK
Content:
{
version: "1.7.2",
buildDate: "9/9/2020",
configuration: "Release",
appName: "Preflight"
}
Was this page helpful?