Edit projects
Decommission notice
Purpose
This endpoint enables editing of existing project attributes.
Request data
HTTPS method: PUT
- Constants and parameters enclosed in curly brackets { } must be replaced with their values.
- Please see the following Request parameters section with the required and optional parameters tables for their values. The generic request format is as follows.
URL request format
https://{baseURL}/geofencing/{versionNumber}/projects/{projectId}?key={Your_API_Key}&adminKey={Your_Admin_Key}curl command request format
curl -XPUT "Content-type: application/json" -d'{"name": "a_new_project_name"}''https://{baseURL}/geofencing/{versionNumber}/projects/{projectId}?key={Your_API_Key}&adminKey={Your_Admin_Key}'PUT request body
{ "name": "a_new_project_name"}Request parameters
The following table describes the parameters that can be used in a request.
- Required parameters must be used or the call will fail.
- Optional parameters may be used.
- The order of request parameters is not important.
Note: There are no optional parameters in this endpoint.
Required parameters | Description |
|---|---|
| The base URL for calling the API. |
| Service version number. |
| The unique ID of a project to edit. |
| An API Key valid for the requested service. |
| An Admin Key valid for the requested service. |
Response data
Response body
The following JSON code block demonstrates a successful response from the API server.
{ "name": "new_project_name", "id": "project_id"}Response fields
The following data tables describe all of the fields that can appear in a response.
Primary fields | Description |
|---|---|
| The name of the project. |
| The |
Example
Edit a project
URL request example
https://api.tomtom.com/geofencing/1/projects/44de824d-c368-46cf-a234-a6792682dfd6?key={Your_API_Key}&adminKey={Your_Admin_Key}PUT request body
{ "name": "Airports in Bayern"}Response body example
{ "name": "Airports in Bayern", "id": "44de824d-c368-46cf-a234-a6792682dfd6"}