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
**This SDK is compatible with Appwrite server version latest. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-php/releases).**
9
+
**This SDK is compatible with Appwrite server version 1.8.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-php/releases).**
10
10
11
11
Appwrite is an open-source backend as a service server that abstracts and simplifies complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the PHP SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
GET https://cloud.appwrite.io/v1/activities/events
6
+
```
7
+
8
+
** List all events for selected filters. **
9
+
10
+
### Parameters
11
+
12
+
| Field Name | Type | Description | Default |
13
+
| --- | --- | --- | --- |
14
+
| queries | string | Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on attributes such as userId, teamId, etc. |[]|
15
+
16
+
17
+
```http request
18
+
GET https://cloud.appwrite.io/v1/activities/events/{eventId}
Copy file name to clipboardExpand all lines: docs/databases.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -577,6 +577,7 @@ POST https://cloud.appwrite.io/v1/databases/{databaseId}/collections/{collection
577
577
| required | boolean | Is attribute required? ||
578
578
| default | string | Default value for attribute when not provided. Cannot be set when attribute is required. ||
579
579
| array | boolean | Is attribute an array? ||
580
+
| encrypt | boolean | Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried. ||
580
581
581
582
582
583
```http request
@@ -615,6 +616,7 @@ POST https://cloud.appwrite.io/v1/databases/{databaseId}/collections/{collection
615
616
| required | boolean | Is attribute required? ||
616
617
| default | string | Default value for attribute when not provided. Cannot be set when attribute is required. ||
617
618
| array | boolean | Is attribute an array? ||
619
+
| encrypt | boolean | Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried. ||
618
620
619
621
620
622
```http request
@@ -785,6 +787,7 @@ POST https://cloud.appwrite.io/v1/databases/{databaseId}/collections/{collection
785
787
| required | boolean | Is attribute required? ||
786
788
| default | string | Default value for attribute when not provided. Cannot be set when attribute is required. ||
787
789
| array | boolean | Is attribute an array? ||
790
+
| encrypt | boolean | Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried. ||
788
791
789
792
790
793
```http request
@@ -862,6 +865,7 @@ POST https://cloud.appwrite.io/v1/databases/{databaseId}/collections/{collection
862
865
| required | boolean | Is attribute required? ||
863
866
| default | string | Default value for attribute when not provided. Cannot be set when attribute is required. ||
864
867
| array | boolean | Is attribute an array? ||
868
+
| encrypt | boolean | Toggle encryption for the attribute. Encryption enhances security by not storing any plain text values in the database. However, encrypted attributes cannot be queried. ||
0 commit comments