Skip to content

Commit c4c3b8b

Browse files
Merge pull request #299422 from spelluru/attributes0506
Updated attributes
2 parents d0492da + 2326908 commit c4c3b8b

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

articles/event-grid/authenticate-with-namespaces-using-webhook-authentication.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ In this step, you configure custom webhook authentication settings on your Event
103103
1. In the **Custom Webhook authentication** section, specify values for the following properties:
104104
1. Select **Managed identity** type.
105105
1. For **Webhook URL**, enter the value of the URL endpoint where the Event Grid service sends authenticated webhook requests using the specified managed identity.
106-
1. For **Token audience URI**, enter the value of Microsoft Entra application ID or URI to get the access token that will be included as the bearer token in delivery requests.
106+
1. For **Token audience URI**, enter the value of Microsoft Entra application ID or URI to get the access token to be included as the bearer token in delivery requests.
107107
1. For **Microsoft Entra tenant ID**, enter the value of Microsoft Entra tenant ID used to acquire the bearer token for authenticated webhook delivery.
108108
1. Select **Apply**.
109109
@@ -210,17 +210,19 @@ Content-Type: application/json
210210
### Examples of supported attribute types:
211211

212212
```json
213-
"bool_attr": true,
214-
  "num_attr_pos": 1,
215-
  "num_attr_neg": -1,
216-
  "num_attr_to_big": 9223372036854775807,
217-
  "num_attr_float": 1.23,
218-
  "str_attr": "str_value",
219-
  "str_list_attr": [
220-
    "str_value_1",
221-
    "str_value_2"]
213+
"num_attr_pos": 1,
214+
"num_attr_neg": -1,
215+
"str_attr": "str_value",
216+
"str_list_attr": [
217+
"str_value_1",
218+
"str_value_2"
219+
]
222220
```
223221

222+
All correct data types (number that fits int32, string, array of strings) are used as attributes. In the example, `num_attr_pos`, `num_attr_neg`, `str_attr`, `str_list_attr` claims have correct data types and are used as attributes.
223+
224+
225+
224226
## Related content
225227
- [MQTT client authentication](mqtt-client-authentication.md)
226228
- [Authenticate client using custom JWT](mqtt-client-custom-jwt.md)

0 commit comments

Comments
 (0)