Skip to content

Imdf API Endpoints

Convert Geojson to Imdf

Endpoint:

POST api/v9/imdf/clients/{clientIdentifier}/sites/{siteIdentifier}/buildings/{buildingIdentifier}/imdf-job/convert

Description:

Convert geojson to imdf. When a request comes in, the IMDF converter receives the data by sending a request via Pointr Cloud.

Success Response:

{
    "result": {
        "buildingIdentifier": "{buildingIdentifier}",
        "startTime": "2025-02-18 18:29:43",
        "status": "In Progress"
    }
}


* You can access the possible response codes you may encounter here.


Get Geojson to Imdf Job Status

Endpoint:

GET api/v9/imdf/clients/{clientIdentifier}/sites/{siteIdentifier}/buildings/{buildingIdentifier}/imdf-job/status

Description:

GET geojson to imdf job status

Success Response:

{
    "message" : "Conversion is completed",
    "url":"{cdnBaseUrl}/{clientIdentifier}/imdf/v9/{uuid}/{fileName}.zip?sasToken"
}


* You can access the possible response codes you may encounter here.