Integrating with Core Inspection’s Customer API

Core Inspection provides an API that allows customers to retrieve their equipment and inspection data programmatically, removing the need to manually enter data into their Asset Management System.

Step 1: Set Up API Access

To begin, the customer will need an API license. The current cost is $45 per month.

Please contact our team at Sales@coreinspection.com and request API access for the desired client. We will create a dedicated login with the necessary permissions.

Step 2: Obtain the Customer ID

To find the Customer ID:

  • Log in to the Core platform.

  • Navigate to the client's profile.

  • The Client ID will be visible in the URL as shown below:  Copy the Guid, you'll need it for API calls.

 

Step 3: Connect to the Equipment API

The customer’s IT team can retrieve equipment data using the following endpoint:

http://api4.coreinspection.com/customerequipment?clientId={CLIENT_ID}&ModifiedDate={LAST_MODIFIED_UTC}

  • Replace {CLIENT_ID} with the value obtained in Step 2.

  • Replace {LAST_MODIFIED_UTC} with the UTC timestamp from the last successful API poll (e.g., 2025-02-23).

The endpoint will return all equipment records modified since the specified date.


Authentication

This endpoint uses Basic Authentication.

Use the username and password provided when the API login was set up in Step 1.

Example Response:

[
{
"equipmentGuid": "db77aded-3e72-4f69-972b-2d0f7b418781",
"idMarking": "191785",
"description": "Test Description",
"clientReference": null,
"location": "",
"lastInspectionDate": "2024-10-25T00:00:00",
"nextScheduledDate": "2025-10-25T00:00:00",
"clientSite": "Test Client Site",
"passed": true,
"failed": null,
"missed": null,
"statusDescription": "Pass",
"latestInspectionURL": "https://nzdemo.coreinspection.com/InspectionCertificate.aspx?siteId=15&InspectionGuid=7710205f-5a56-41da-8845-3333e468f4fc"
}
]