Server information
Traccar (6.10.0)
Traccar GPS tracking server API documentation. To use the API you need to have a server instance. For testing purposes you can use one of free demo servers. For production use you can install your own server or get a subscription service.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://docs2.mygpsapi.com/_mock/openapi
Doha Dynamics API (Production)
https://mygpsapi.com/api
- Mock serverhttps://docs2.mygpsapi.com/_mock/openapi/users
- Doha Dynamics API (Production)https://mygpsapi.com/api/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://docs2.mygpsapi.com/_mock/openapi/users?userId=string'Response
application/json
[ { "id": 0, "name": "string", "email": "string", "phone": "string", "readonly": true, "administrator": true, "map": "string", "latitude": 0, "longitude": 0, "zoom": 0, "password": "string", "coordinateFormat": "string", "disabled": true, "expirationTime": "2019-08-24T14:15:22Z", "deviceLimit": 0, "userLimit": 0, "deviceReadonly": true, "limitCommands": true, "fixedEmail": true, "poiLayer": "string", "attributes": {} } ]
- Mock serverhttps://docs2.mygpsapi.com/_mock/openapi/users
- Doha Dynamics API (Production)https://mygpsapi.com/api/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://docs2.mygpsapi.com/_mock/openapi/users \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"email": "string",
"phone": "string",
"readonly": true,
"administrator": true,
"map": "string",
"latitude": 0,
"longitude": 0,
"zoom": 0,
"password": "string",
"coordinateFormat": "string",
"disabled": true,
"expirationTime": "2019-08-24T14:15:22Z",
"deviceLimit": 0,
"userLimit": 0,
"deviceReadonly": true,
"limitCommands": true,
"fixedEmail": true,
"poiLayer": "string",
"attributes": {}
}'Response
application/json
{ "id": 0, "name": "string", "email": "string", "phone": "string", "readonly": true, "administrator": true, "map": "string", "latitude": 0, "longitude": 0, "zoom": 0, "password": "string", "coordinateFormat": "string", "disabled": true, "expirationTime": "2019-08-24T14:15:22Z", "deviceLimit": 0, "userLimit": 0, "deviceReadonly": true, "limitCommands": true, "fixedEmail": true, "poiLayer": "string", "attributes": {} }
- Mock serverhttps://docs2.mygpsapi.com/_mock/openapi/users/{id}
- Doha Dynamics API (Production)https://mygpsapi.com/api/users/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
-u <username>:<password> \
'https://docs2.mygpsapi.com/_mock/openapi/users/{id}' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"email": "string",
"phone": "string",
"readonly": true,
"administrator": true,
"map": "string",
"latitude": 0,
"longitude": 0,
"zoom": 0,
"password": "string",
"coordinateFormat": "string",
"disabled": true,
"expirationTime": "2019-08-24T14:15:22Z",
"deviceLimit": 0,
"userLimit": 0,
"deviceReadonly": true,
"limitCommands": true,
"fixedEmail": true,
"poiLayer": "string",
"attributes": {}
}'Response
application/json
{ "id": 0, "name": "string", "email": "string", "phone": "string", "readonly": true, "administrator": true, "map": "string", "latitude": 0, "longitude": 0, "zoom": 0, "password": "string", "coordinateFormat": "string", "disabled": true, "expirationTime": "2019-08-24T14:15:22Z", "deviceLimit": 0, "userLimit": 0, "deviceReadonly": true, "limitCommands": true, "fixedEmail": true, "poiLayer": "string", "attributes": {} }
- Mock serverhttps://docs2.mygpsapi.com/_mock/openapi/users/{id}
- Doha Dynamics API (Production)https://mygpsapi.com/api/users/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
-u <username>:<password> \
'https://docs2.mygpsapi.com/_mock/openapi/users/{id}'