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
Copy file name to clipboardExpand all lines: src/lib/seam/connect/openapi.ts
+74Lines changed: 74 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3874,6 +3874,11 @@ export default {
3874
3874
'Indicates whether the ACS entrance can be unlocked with card credentials.',
3875
3875
type: 'boolean',
3876
3876
},
3877
+
can_unlock_with_cloud_key: {
3878
+
description:
3879
+
'Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential.',
3880
+
type: 'boolean',
3881
+
},
3877
3882
can_unlock_with_code: {
3878
3883
description:
3879
3884
'Indicates whether the ACS entrance can be unlocked with pin codes.',
@@ -24094,6 +24099,11 @@ export default {
24094
24099
'Indicates whether the ACS entrance can be unlocked with card credentials.',
24095
24100
type: 'boolean',
24096
24101
},
24102
+
can_unlock_with_cloud_key: {
24103
+
description:
24104
+
'Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential.',
24105
+
type: 'boolean',
24106
+
},
24097
24107
can_unlock_with_code: {
24098
24108
description:
24099
24109
'Indicates whether the ACS entrance can be unlocked with pin codes.',
@@ -44201,6 +44211,70 @@ export default {
44201
44211
'x-title': 'List Credentials with Access to an Entrance',
44202
44212
},
44203
44213
},
44214
+
'/acs/entrances/unlock': {
44215
+
post: {
44216
+
description:
44217
+
'Remotely unlocks a specified [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) using a cloud_key credential. Returns an action attempt that tracks the progress of the unlock operation.',
44218
+
operationId: 'acsEntrancesUnlockPost',
44219
+
requestBody: {
44220
+
content: {
44221
+
'application/json': {
44222
+
schema: {
44223
+
properties: {
44224
+
acs_credential_id: {
44225
+
description:
44226
+
'ID of the cloud_key credential to use for the unlock operation.',
0 commit comments