Quick Start
Get your Access key
Make your first request
This endpoint is used to get a challenge token for login.
Query parameters
operationstringRequiredExample:
The operation to be performed. In this case, it should be "getchallenge".
getchallengeusernamestringRequiredExample:
The username of the user trying to get the challenge.
[email protected]Responses
200
Challenge Response
application/json
400
Bad Request
application/json
get
/webservice.php?operation=getchallengeThis endpoint is used to login to the system. The accessKey should be a MD5 hash of the concatenation of the token and the user access key.
Body
operationstringOptionalExample:
The operation to be performed. In this case, it should be "login".
loginaccessKeystringOptional
The access key for the user. This should be a MD5 hash of the concatenation of the token and the user access key.
Responses
200
Login Response
application/json
400
Bad Request
application/json
post
/webservice.php?operation=loginLast updated