Webservice API
Get Challenge
This endpoint is used to get a challenge token for login.
The operation to be performed. In this case, it should be "getchallenge".
getchallengeThe username of the user trying to get the challenge.
[email protected]Challenge Response
Indicates if the operation was successful.
Bad Request
Login
This 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.
The operation to be performed. In this case, it should be "login".
loginThe access key for the user. This should be a MD5 hash of the concatenation of the token and the user access key.
Login Response
Indicates if the operation was successful.
Bad Request
Retrieve
This endpoint is used to retrieve data from the system.
The operation to be performed. In this case, it should be "retrieve".
retrieveThe session name, which is obtained through the Login Operation.
The ID of the data to be retrieved.
Retrieve Operation Response
Indicates if the operation was successful.
The result of the operation.
Bad Request
Create
This endpoint is used to create new data in the system.
The operation to be performed. In this case, it should be "create".
createThe session name, which is obtained through the Login Operation.
The data to be created, in URL-encoded JSON format.
The type of the data to be created, which corresponds to the module name.
Create Operation Response
Indicates if the operation was successful.
The result of the operation.
Bad Request
Update
This endpoint is used to update existing data in the system.
The operation to be performed. In this case, it should be "update".
updateThe session name, which is obtained through the Login Operation.
The data to be updated, in URL-encoded format.
Update Operation Response
Indicates if the operation was successful.
The result of the operation.
Bad Request
Last updated