curl --location 'https://api.truemetrics.cloud/V2/results/entrances?id_customer=12345' \
--header 'x-api-key: YOURKEY' \
--header 'Content-Type: application/json'
{
    "results": [
        {
            "entrances": [
                {
                    "lat": "0.0",
                    "lon": "0.0"
                }
            ]
        }
    ],
    "message": "Successfully retrieved entrances for this id_customer."
}
This is just an example of how a customer-specific endpoint can look like.

Query Parameters

id_customer
string

id number of the customer, as a string.

Content-Type
string
x-api-key
string

Response

results
array

Array of entrances for the given address.

message
string

Message indicating whether the call was successful.

curl --location 'https://api.truemetrics.cloud/V2/results/entrances?id_customer=12345' \
--header 'x-api-key: YOURKEY' \
--header 'Content-Type: application/json'
{
    "results": [
        {
            "entrances": [
                {
                    "lat": "0.0",
                    "lon": "0.0"
                }
            ]
        }
    ],
    "message": "Successfully retrieved entrances for this id_customer."
}