Back to Website
Show / Hide Table of Contents

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"
}
Back to top Copyright © 2001–2022 Aurigma, Inc. All rights reserved.
Loading...