Added header parameters to JSON pages, Some cleanup of google assistant example code

This commit is contained in:
Ziver Koc 2020-09-04 01:10:55 +02:00
parent 0632804bd4
commit 9bca47d566
13 changed files with 806 additions and 15 deletions

View file

@ -79,18 +79,18 @@ public interface DeConzRestConfig {
/**
* Change the Password of the Gateway. The parameter must be a Base64 encoded combination of <username>:<password>.
* Change the Password of the Gateway. The parameter must be a Base64 encoded combination of "<username>:<password>".
*
* @param username The user name (currently only delight is supported). (required)
* @param oldHash String The Base64 encoded combination of username:old password. (required)
* @param newHash String The Base64 encoded combination of username:new password. (required)
* @param username The user name (currently only "delight" is supported). (required)
* @param oldHash String The Base64 encoded combination of "username:old password". (required)
* @param newHash String The Base64 encoded combination of "username:new password". (required)
*/
@WSRequestType(HTTP_PUT)
@WSPath("/api/{{requestApiKey}}/config/password")
void setPassword(String requestApiKey, String username, String oldHash, String newHash);
/**
* Resets the username and password to default (delight,delight). Only possible within 10 minutes after gateway start.
* Resets the username and password to default ("delight","delight"). Only possible within 10 minutes after gateway start.
*/
@WSRequestType(HTTP_DELETE)
@WSPath("/api/{{requestApiKey}}/config/password")