You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param userId Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
58
+
* @param userId Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
59
59
* @param email User email.
60
60
* @param password User password. Must be at least 8 chars.
* @param phone Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
285
+
* @param phone Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
286
286
* @param password User password. Must be at least 8 chars.
287
287
* @return [io.appwrite.models.Account]
288
288
*/
@@ -612,7 +612,7 @@ class Account : Service {
612
612
* the URL parameter empty, so that the login completion will be handled by
613
613
* your Appwrite instance by default.
614
614
*
615
-
* @param userId Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
615
+
* @param userId Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
616
616
* @param email User email.
617
617
* @param url URL to redirect the user back to your app from the magic URL login. Only URLs from hostnames in your project platform list are allowed. This requirement helps to prevent an [open redirect](https://cheatsheetseries.owasp.org/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.html) attack against your project API.
618
618
* @return [io.appwrite.models.Token]
@@ -784,8 +784,8 @@ class Account : Service {
784
784
* endpoint to complete the login process. The secret sent to the user's phone
785
785
* is valid for 15 minutes.
786
786
*
787
-
* @param userId Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
788
-
* @param phone Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
787
+
* @param userId Unique Id. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
788
+
* @param phone Phone number. Format this number with a leading '+' and a country code, e.g., +16175551212.
789
789
* @return [io.appwrite.models.Token]
790
790
*/
791
791
@JvmOverloads
@@ -861,7 +861,7 @@ class Account : Service {
861
861
* Use this endpoint to get a logged in user's session using a Session ID.
862
862
* Inputting 'current' will return the current session being used.
863
863
*
864
-
* @param sessionId Session ID. Use the string 'current' to get the current device session.
864
+
* @param sessionId Session ID. Use the string 'current' to get the current device session.
865
865
* @return [io.appwrite.models.Session]
866
866
*/
867
867
@JvmOverloads
@@ -895,7 +895,7 @@ class Account : Service {
895
895
* If session was created using an OAuth provider, this route can be used to
896
896
* "refresh" the access token.
897
897
*
898
-
* @param sessionId Session ID. Use the string 'current' to update the current device session.
898
+
* @param sessionId Session ID. Use the string 'current' to update the current device session.
899
899
* @return [io.appwrite.models.Session]
900
900
*/
901
901
@JvmOverloads
@@ -930,7 +930,7 @@ class Account : Service {
930
930
* Session ID argument, only the unique session ID provided is deleted.
931
931
*
932
932
*
933
-
* @param sessionId Session ID. Use the string 'current' to delete the current device session.
933
+
* @param sessionId Session ID. Use the string 'current' to delete the current device session.
Copy file name to clipboardExpand all lines: library/src/main/java/io/appwrite/services/Avatars.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -270,7 +270,7 @@ class Avatars : Service {
270
270
* @param text Plain text to be converted to QR code image.
271
271
* @param size QR code size. Pass an integer between 1 to 1000. Defaults to 400.
272
272
* @param margin Margin from edge. Pass an integer between 0 to 10. Defaults to 1.
273
-
* @param download Return resulting image with 'Content-Disposition: attachment ' headers for the browser to start downloading it. Pass 0 for no header, or 1 for otherwise. Default value is set to 0.
273
+
* @param download Return resulting image with 'Content-Disposition: attachment ' headers for the browser to start downloading it. Pass 0 for no header, or 1 for otherwise. Default value is set to 0.
Copy file name to clipboardExpand all lines: library/src/main/java/io/appwrite/services/Databases.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ class Databases : Service {
62
62
*
63
63
* @param databaseId Database ID.
64
64
* @param collectionId Collection ID. You can create a new collection using the Database service [server integration](https://appwrite.io/docs/server/databases#databasesCreateCollection). Make sure to define attributes before creating documents.
65
-
* @param documentId Document ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
65
+
* @param documentId Document ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
66
66
* @param data Document data as JSON object.
67
67
* @param permissions An array of permissions strings. By default the current user is granted with all permissions. [Learn more about permissions](/docs/permissions).
Copy file name to clipboardExpand all lines: library/src/main/java/io/appwrite/services/Storage.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ class Storage : Service {
77
77
*
78
78
*
79
79
* @param bucketId Storage bucket unique ID. You can create a new storage bucket using the Storage service [server integration](/docs/server/storage#createBucket).
80
-
* @param fileId File ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
80
+
* @param fileId File ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
81
81
* @param file Binary file.
82
82
* @param permissions An array of permission strings. By default the current user is granted with all permissions. [Learn more about permissions](/docs/permissions).
Copy file name to clipboardExpand all lines: library/src/main/java/io/appwrite/services/Teams.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ class Teams : Service {
59
59
* assigned as the owner of the team. Only the users with the owner role can
60
60
* invite new members, add new owners and delete or update the team.
61
61
*
62
-
* @param teamId Team ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
62
+
* @param teamId Team ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
63
63
* @param name Team name. Max length: 128 chars.
64
64
* @param roles Array of strings. Use this param to set the roles in the team for the user who created it. The default role is **owner**. A role can be any string. Learn more about [roles and permissions](/docs/permissions). Maximum of 100 roles are allowed, each 32 characters long.
65
65
* @return [io.appwrite.models.Team]
@@ -331,7 +331,7 @@ class Teams : Service {
331
331
*
332
332
* @param teamId Team ID.
333
333
* @param membershipId Membership ID.
334
-
* @param roles An array of strings. Use this param to set the user's roles in the team. A role can be any string. Learn more about [roles and permissions](https://appwrite.io/docs/permissions). Maximum of 100 roles are allowed, each 32 characters long.
334
+
* @param roles An array of strings. Use this param to set the user's roles in the team. A role can be any string. Learn more about [roles and permissions](https://appwrite.io/docs/permissions). Maximum of 100 roles are allowed, each 32 characters long.
0 commit comments