Server API

Authenticates a user to the server

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
usernamestringRequired
passwordstring · passwordRequired
Responses
200

User authenticated successfully.

application/json
Responsestring
post
/api/auth/login

Retrieves applications

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

A list of all applications

application/json
Responsestring[]
get
/api/apps

Finds symbols by a pattern

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
kindstring · enumRequired

Symbol kind. It must be one of: cls, mth, thr or key.

Possible values:
Body
patternstringRequired
Responses
200

A list of matched symbols

application/json
Responsestring[]
post
/api/data/symbols/{kind}

Retrieves calls satisfying the specified conditions

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
fromstring · date-timeRequired

The beginning of the time range

thrustring · date-timeRequired

The end of the time range

applicationstringOptional

Application name

threadstringOptional

Thread name

query_idstringOptional

Previous query id

Responses
200

A list of calls

application/json
post
/api/data/calls

Last updated