GPS tracking server API documentation.
iTransfer (5.0)
Download OpenAPI description
Overview
Languages
Servers
Demo Server 1
https://demo.traccar.org/api
- Demo Server 1https://demo.traccar.org/api/calendars
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://demo.traccar.org/api/calendars?all=true&userId=0'Response
application/json
[ { "id": 0, "name": "string", "data": "string", "attributes": {} } ]
- Demo Server 1https://demo.traccar.org/api/calendars
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://demo.traccar.org/api/calendars \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"data": "string",
"attributes": {}
}'Response
application/json
{ "id": 0, "name": "string", "data": "string", "attributes": {} }
- Demo Server 1https://demo.traccar.org/api/calendars/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
-u <username>:<password> \
'https://demo.traccar.org/api/calendars/{id}' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"data": "string",
"attributes": {}
}'Response
application/json
{ "id": 0, "name": "string", "data": "string", "attributes": {} }