Developer Inactive Error

Hello
Joined recently ( 3 days back )
I have one issue and help appreciated.

Issue/Error: "Developer Inactive"

Context: Successfully generated the Key and Admin Key. I wanted to crate a project and submitted the request as shown below:

https://api.tomtom.com/geofencing/1/projects?project?key=nuzGeX7
&adminKey=JtVON9afIdU…
using POST method of POSTMAN software.

The response is “Developer Inactive” and got stuck there!!

Suggest next steps to become “active

Solutions/Suggestion Please:

Regards
Patil B A

Between “projects” and “project” there should be a slash instead of a question mark.

Thanks Przemek . It worked.
Regards
Patil B A

I am getting the same error when using Snap to roads post API like so:

Loop through each row in the dataframe

for index, row in df.iterrows():
    # Define the point data for the current row
    point_data = {
        "type": "Feature",
        "geometry": {
            "type": "Point",
            "coordinates": [row["longitude"], row["latitude"]]
        },
        "properties": {
            "timestamp": row["Timestamp"].isoformat() + "Z"
        }
    }

Add the point data to the points list

    points_list.append(point_data)

# Define the request data
request_data = {
    "points": points_list,
    "vehicleType": "car",
    "versionNumber": 2
}

# Send the POST request to the API
response = requests.post(url, json=request_data)

I checked your API keys and they work fine with Snap to Roads API.