Build Info
- Less than a minute to read
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"
}