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
.describe('IDs of the spaces to which the access grant gives access.'),
22
+
.describe('IDs of the spaces to which the Access Grant gives access.'),
23
23
requested_access_methods: z
24
24
.array(requested_access_method)
25
-
.describe('Access methods that the user requested for the access grant.'),
25
+
.describe('Access methods that the user requested for the Access Grant.'),
26
26
access_method_ids: z
27
27
.array(z.string().uuid())
28
-
.describe('IDs of the access methods created for the access grant.'),
29
-
display_name: z.string().describe('Display name of the access grant.'),
28
+
.describe('IDs of the access methods created for the Access Grant.'),
29
+
display_name: z.string().describe('Display name of the Access Grant.'),
30
30
instant_key_url: z
31
31
.string()
32
32
.url()
33
33
.optional()
34
34
.describe(
35
-
'Instant Key URL. Only returned if the access grant has a single mobile_key access_method. ',
35
+
'Instant Key URL. Only returned if the Access Grant has a single mobile_key access_method. ',
36
36
),
37
37
created_at: z
38
38
.string()
39
39
.datetime()
40
-
.describe('Date and time at which the access grant was created.'),
40
+
.describe('Date and time at which the Access Grant was created.'),
41
41
starts_at: z
42
42
.string()
43
43
.datetime()
44
44
.optional()
45
-
.describe('Date and time at which the access grant starts.'),
45
+
.describe('Date and time at which the Access Grant starts.'),
46
46
ends_at: z
47
47
.string()
48
48
.datetime()
49
49
.optional()
50
-
.describe('Date and time at which the access grant ends.'),
50
+
.describe('Date and time at which the Access Grant ends.'),
51
51
}).describe(`
52
52
---
53
53
draft: Early access.
54
54
route_path: /access_grants
55
55
---
56
-
Represents an access grant. Access grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an access grant for an existing user identity, or you can create a new user identity *while* creating the new access grant.
56
+
Represents an Access Grant. Access Grants enable you to grant a user identity access to spaces, entrances, and devices through one or more access methods, such as mobile keys, plastic cards, and PIN codes. You can create an Access Grant for an existing user identity, or you can create a new user identity *while* creating the new Access Grant.
Represents an access method for an access grant. Access methods describe the modes of access, such as PIN codes, plastic cards, and mobile keys. For a mobile key, the access method also stores the URL for the associated Instant Key.
44
+
Represents an access method for an Access Grant. Access methods describe the modes of access, such as PIN codes, plastic cards, and mobile keys. For a mobile key, the access method also stores the URL for the associated Instant Key.
0 commit comments