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
Indicates that the Seam API cannot communicate with [Seam Bridge](../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
1656
-
See also [Troubleshooting Your Access Control System](../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
1661
+
Indicates that the Seam API cannot communicate with [Seam Bridge](../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
1657
1662
1658
1663
**`created_at`***Datetime*
1659
1664
@@ -1679,18 +1684,24 @@ Indicates that the Seam API cannot communicate with [Seam Bridge](../../capabili
1679
1684
**`is_bridge_error`***Boolean*
1680
1685
1681
1686
1687
+
Indicates whether the error is related to Seam Bridge.
1688
+
1682
1689
1683
1690
---
1684
1691
1685
1692
**`is_connected_account_error`***Boolean*
1686
1693
1687
1694
1695
+
Indicates whether the error is related specifically to the connected account.
1696
+
1688
1697
1689
1698
---
1690
1699
1691
1700
**`message`***String*
1692
1701
1693
1702
1703
+
Detailed description of the error. Provides insights into the issue and potentially how to rectify it.
1704
+
1694
1705
1695
1706
</details>
1696
1707
@@ -2482,8 +2493,7 @@ Credentials provided were invalid.
2482
2493
2483
2494
**`bridge_disconnected`**
2484
2495
2485
-
Indicates that the Seam API cannot communicate with [Seam Bridge](../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
2486
-
See also [Troubleshooting Your Access Control System](../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
2496
+
Indicates that the Seam API cannot communicate with [Seam Bridge](../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
Indicates that the Seam API cannot communicate with [Seam Bridge](../../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
1642
-
See also [Troubleshooting Your Access Control System](../../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
1647
+
Indicates that the Seam API cannot communicate with [Seam Bridge](../../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](../../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
1643
1648
1644
1649
**`created_at`***Datetime*
1645
1650
@@ -1665,18 +1670,24 @@ Indicates that the Seam API cannot communicate with [Seam Bridge](../../../capab
1665
1670
**`is_bridge_error`***Boolean*
1666
1671
1667
1672
1673
+
Indicates whether the error is related to Seam Bridge.
1674
+
1668
1675
1669
1676
---
1670
1677
1671
1678
**`is_connected_account_error`***Boolean*
1672
1679
1673
1680
1681
+
Indicates whether the error is related specifically to the connected account.
1682
+
1674
1683
1675
1684
---
1676
1685
1677
1686
**`message`***String*
1678
1687
1679
1688
1689
+
Detailed description of the error. Provides insights into the issue and potentially how to rectify it.
1690
+
1680
1691
1681
1692
</details>
1682
1693
@@ -2392,8 +2403,7 @@ Credentials provided were invalid.
2392
2403
2393
2404
**`bridge_disconnected`**
2394
2405
2395
-
Indicates that the Seam API cannot communicate with [Seam Bridge](../../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline.
2396
-
See also [Troubleshooting Your Access Control System](../../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
2406
+
Indicates that the Seam API cannot communicate with [Seam Bridge](../../../capability-guides/seam-bridge.md), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](../../../capability-guides/access-systems/troubleshooting-your-access-control-system.md#acs_system.errors.seam_bridge_disconnected).
Copy file name to clipboardExpand all lines: docs/api/acs/entrances/grant_access.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,15 @@ ID of the entrance to which you want to grant an access system user access.
33
33
34
34
---
35
35
36
-
**`acs_user_id`***String* (Required)
36
+
**`acs_user_id`***String*
37
37
38
-
ID of the access system user to whom you want to grant access to an entrance.
38
+
ID of the access system user to whom you want to grant access to an entrance. You can only provide one of acs_user_id or user_identity_id.
39
+
40
+
---
41
+
42
+
**`user_identity_id`***String*
43
+
44
+
ID of the user identity to whom you want to grant access to an entrance. You can only provide one of acs_user_id or user_identity_id. If the ACS system contains an ACS user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.
Copy file name to clipboardExpand all lines: docs/api/acs/users/delete.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,21 @@ To learn more, see [Authentication](https://docs.seam.co/latest/api/authenticati
27
27
28
28
## Request Parameters
29
29
30
-
**`acs_user_id`***String* (Required)
30
+
**`acs_system_id`***String*
31
31
32
-
ID of the access system user that you want to delete.
32
+
ID of the access system that you want to delete. You must provide acs_system_id with user_identity_id.
33
+
34
+
---
35
+
36
+
**`acs_user_id`***String*
37
+
38
+
ID of the access system user that you want to delete. You must provide either acs_user_id or user_identity_id
39
+
40
+
---
41
+
42
+
**`user_identity_id`***String*
43
+
44
+
ID of the user identity that you want to delete. You must provide either acs_user_id or user_identity_id. If you provide user_identity_id, you must also provide acs_system_id.
0 commit comments