File tree Expand file tree Collapse file tree 2 files changed +11
-19
lines changed Expand file tree Collapse file tree 2 files changed +11
-19
lines changed Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ Filters are defined when configuring [your subscription](/event-platform/concept
15
15
Use this filter to receive only events triggered by a specific user.
16
16
17
17
- ** Syntax**
18
- ` user=user_identifier `
18
+ ` user=" user_identifier" `
19
19
- ** Parameters**
20
20
- ` user_identifier ` : The UUID of the user who authored the event.
21
21
22
22
- ** Example**
23
- ` user=57616f6f-1a4d-490e-bc23-c5877d2b30d9 `
23
+ ` user=" 57616f6f-1a4d-490e-bc23-c5877d2b30d9" `
24
24
25
25
---
26
26
@@ -29,26 +29,26 @@ Use this filter to receive only events triggered by a specific user.
29
29
Use this filter to receive only delta events where a specific attribute was updated.
30
30
31
31
- ** Syntax**
32
- ` attribute=attribute_code `
32
+ ` attribute=" attribute_code" `
33
33
- ** Parameters**
34
34
- ` attribute_code ` : The code of the attribute you want to track.
35
35
36
36
- ** Example**
37
- ` attribute=short_description `
37
+ ` attribute=" short_description" `
38
38
39
39
---
40
40
41
41
## ` scope `
42
42
43
- Use this filter to receive only delta events related to a specific scope .
43
+ Use this filter to receive only delta events related to a specific channel .
44
44
45
45
- ** Syntax**
46
- ` scope=scope_code `
46
+ ` scope="code" ` or ` channel="code" `
47
47
- ** Parameters**
48
- - ` scope_code ` : The scope code of the updated data.
48
+ - ` code ` : The scope / channel code of the updated data.
49
49
50
50
- ** Example**
51
- ` scope=my_scope `
51
+ ` scope=" my_scope" `
52
52
53
53
---
54
54
@@ -57,11 +57,11 @@ Use this filter to receive only delta events related to a specific scope.
57
57
Use this filter to receive only delta events for a specific locale.
58
58
59
59
- ** Syntax**
60
- ` locale=locale_code `
60
+ ` locale=" locale_code" `
61
61
- ** Parameters**
62
62
- ` locale_code ` : The locale code of the updated data.
63
63
64
64
- ** Example**
65
- ` locale=en_US `
65
+ ` locale=" en_US" `
66
66
67
67
---
Original file line number Diff line number Diff line change @@ -177,14 +177,6 @@ We currently use a static IP address provided by Google Cloud: `34.140.80.128`
177
177
178
178
When configuring a subscription, you can optionally define a ** filter** to receive ** only the events that match specific criteria** .
179
179
180
- Here's the available filters you can use:
181
- - user
182
-
183
- The following filters will be available soon:
184
- - attribute
185
- - scope
186
- - locale
187
-
188
180
You can find the list of currently available filters and the correct syntax to use [ here] ( /event-platform/available-filters.html ) .
189
181
190
182
### Example
@@ -202,7 +194,7 @@ You can configure your subscription with the following filter:
202
194
"config": {
203
195
"url": "https://your_webhook_url",
204
196
}
205
- "filter": "user=ea0fe94f-417e-4078-a40b-38645ba90ebe"
197
+ "filter": "user=\" ea0fe94f-417e-4078-a40b-38645ba90ebe\" "
206
198
}
207
199
```
208
200
You can’t perform that action at this time.
0 commit comments