Skip to content

iTransfer (5.0)

GPS tracking server API documentation.

Download OpenAPI description
Languages
Servers
Demo Server 1
https://demo.traccar.org/api
Operations
Operations
Operations
Operations
Operations

Permissions

User permissions and other object linking

Operations

Positions

Retrieving raw location information

Operations

Events

Retrieving event information

Operations
Operations

Notifications

User notifications management

Operations
Operations

Commands

Sending commands to devices and stored command management

Operations

Attributes

Computed attributes management

Operations
Operations
Operations
Operations

Request

Without params, it returns a list of Calendars the user has access to

Security
BasicAuth or ApiKey
Query
allboolean

Can only be used by admins or managers to fetch all entities

userIdinteger

Standard users can use this only with their own userId

curl -i -X GET \
  -u <username>:<password> \
  'https://demo.traccar.org/api/calendars?all=true&userId=0'

Responses

OK

Bodyapplication/jsonArray [
idinteger(int64)
namestring
datastring

base64 encoded in iCalendar format

attributesobject
]
Response
application/json
[ { "id": 0, "name": "string", "data": "string", "attributes": {} } ]

Request

Security
BasicAuth or ApiKey
Bodyapplication/jsonrequired
idinteger(int64)
namestring
datastring

base64 encoded in iCalendar format

attributesobject
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": {}
  }'

Responses

OK

Bodyapplication/json
idinteger(int64)
namestring
datastring

base64 encoded in iCalendar format

attributesobject
Response
application/json
{ "id": 0, "name": "string", "data": "string", "attributes": {} }

Request

Security
BasicAuth or ApiKey
Path
idintegerrequired
Bodyapplication/jsonrequired
idinteger(int64)
namestring
datastring

base64 encoded in iCalendar format

attributesobject
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": {}
  }'

Responses

OK

Bodyapplication/json
idinteger(int64)
namestring
datastring

base64 encoded in iCalendar format

attributesobject
Response
application/json
{ "id": 0, "name": "string", "data": "string", "attributes": {} }

Request

Security
BasicAuth or ApiKey
Path
idintegerrequired
curl -i -X DELETE \
  -u <username>:<password> \
  'https://demo.traccar.org/api/calendars/{id}'

Responses

No Content

Body

Statistics

Retrieving server statistics

Operations