Register Admin Key
Decommission notice
Purpose
This endpoint is used to register a customer.
- Before a customer can use the service, or act as an Admin for Geofencing endpoints, they must register.
- Registering creates a configuration for the customer and creates an Admin Key, used to create/edit/delete Location History data.
Request data
HTTPS method: POST
- 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 these values. The generic URL format is as follows.
URL request format
https://{baseURL}/geofencing/{versionNumber}/register?key={Your_API_Key}curl command request format
curl -XPOST "Content-type: application/json" -d'{ "secret": "your_secret" }''https://{baseURL}/geofencing/{versionNumber}/register?key={Your_API_Key}'POST request body format
{ "secret": "secret_key"}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. |
| An API Key valid for the requested service. |
Response data
Response body
The following JSON code block demonstrates a successful response from the API server.
{ "adminKey": "admin_key"}Response fields
The following table describes all of the fields that can appear in a response.
Primary fields | Description |
|---|---|
| A generated Admin Key that can be used to administer geofencing objects/fences/projects. |
Example
Register a customer account using a passed secret value.
HTML Method: POST
https://api.tomtom.com/geofencing/1/register?key=yPMFGLgBoejrRoWS8qYSPOST request body example
{ "secret": "My very secret secret"}Response body example
{ "adminKey": "UpP9m2jg4PU6fWAFnvskU33CwfW24e17P0oTC5byUfUzMElS"}