Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions docs/api-reference/_blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -158504,6 +158504,45 @@
"format": "id",
"jsonType": "string"
},
{
"name": "acs_entrance_id",
"description": "undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the access-denied event.",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": "",
"propertyGroupKey": null,
"format": "id",
"jsonType": "string"
},
{
"name": "acs_system_id",
"description": "undocumented: Unreleased.\n ---\n ID of the ACS system associated with the access-denied event.",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": "",
"propertyGroupKey": null,
"format": "id",
"jsonType": "string"
},
{
"name": "acs_user_id",
"description": "undocumented: Unreleased.\n ---\n ID of the ACS user associated with the access-denied event.",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": "",
"propertyGroupKey": null,
"format": "id",
"jsonType": "string"
},
{
"name": "connected_account_custom_metadata",
"description": "Custom metadata of the connected account, present when connected_account_id is provided.",
Expand Down Expand Up @@ -158633,6 +158672,19 @@
"format": "datetime",
"jsonType": "string"
},
{
"name": "user_identity_id",
"description": "undocumented: Unreleased.\n ---\n ID of the user identity associated with the access-denied event.",
"isDeprecated": false,
"deprecationMessage": "",
"isUndocumented": false,
"undocumentedMessage": "",
"isDraft": false,
"draftMessage": "",
"propertyGroupKey": null,
"format": "id",
"jsonType": "string"
},
{
"name": "workspace_id",
"description": "ID of the workspace associated with the event.",
Expand Down
24 changes: 24 additions & 0 deletions docs/api-reference/locks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4008,6 +4008,24 @@ The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a u

ID of the access code that was used in the unlock attempts.

<strong><code>acs_entrance_id</code></strong> <i>UUID</i>

undocumented: Unreleased.
---
ID of the ACS entrance associated with the access-denied event.

<strong><code>acs_system_id</code></strong> <i>UUID</i>

undocumented: Unreleased.
---
ID of the ACS system associated with the access-denied event.

<strong><code>acs_user_id</code></strong> <i>UUID</i>

undocumented: Unreleased.
---
ID of the ACS user associated with the access-denied event.

<strong><code>connected_account_custom_metadata</code></strong> <i>Record</i>

Custom metadata of the connected account, present when connected_account_id is provided.
Expand Down Expand Up @@ -4044,6 +4062,12 @@ The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a u

Date and time at which the event occurred.

<strong><code>user_identity_id</code></strong> <i>UUID</i>

undocumented: Unreleased.
---
ID of the user identity associated with the access-denied event.

<strong><code>workspace_id</code></strong> <i>UUID</i>

ID of the workspace associated with the event.
Expand Down
28 changes: 28 additions & 0 deletions mintlify-docs/api/locks/events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,9 @@ The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a u
```json Example webhook payload
{
"access_code_id": "00000000-0000-0000-0000-000000000000",
"acs_entrance_id": "00000000-0000-0000-0000-000000000000",
"acs_system_id": "00000000-0000-0000-0000-000000000000",
"acs_user_id": "00000000-0000-0000-0000-000000000000",
"connected_account_custom_metadata": {},
"connected_account_id": "00000000-0000-0000-0000-000000000000",
"created_at": "2025-01-01T00:00:00.000Z",
Expand All @@ -237,6 +240,7 @@ The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a u
"event_id": "00000000-0000-0000-0000-000000000000",
"event_type": "lock.access_denied",
"occurred_at": "2025-01-01T00:00:00.000Z",
"user_identity_id": "00000000-0000-0000-0000-000000000000",
"workspace_id": "00000000-0000-0000-0000-000000000000"
}
```
Expand All @@ -247,6 +251,24 @@ The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a u
ID of the access code that was used in the unlock attempts.
</ResponseField>

<ResponseField name="acs_entrance_id" type="String (UUID)">
undocumented: Unreleased.
---
ID of the ACS entrance associated with the access-denied event.
</ResponseField>

<ResponseField name="acs_system_id" type="String (UUID)">
undocumented: Unreleased.
---
ID of the ACS system associated with the access-denied event.
</ResponseField>

<ResponseField name="acs_user_id" type="String (UUID)">
undocumented: Unreleased.
---
ID of the ACS user associated with the access-denied event.
</ResponseField>

<ResponseField name="connected_account_custom_metadata" type="Object">
Custom metadata of the connected account, present when connected_account_id is provided.
</ResponseField>
Expand Down Expand Up @@ -283,6 +305,12 @@ The [lock](https://docs.seam.co/low-level-apis/smart-locks) denied access to a u
Date and time at which the event occurred.
</ResponseField>

<ResponseField name="user_identity_id" type="String (UUID)">
undocumented: Unreleased.
---
ID of the user identity associated with the access-denied event.
</ResponseField>

<ResponseField name="workspace_id" type="String (UUID)">
ID of the workspace associated with the event.
</ResponseField>
Expand Down
21 changes: 20 additions & 1 deletion mintlify-docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -16956,6 +16956,21 @@
"format": "uuid",
"type": "string"
},
"acs_entrance_id": {
"description": "\n undocumented: Unreleased.\n ---\n ID of the ACS entrance associated with the access-denied event.\n ",
"format": "uuid",
"type": "string"
},
"acs_system_id": {
"description": "\n undocumented: Unreleased.\n ---\n ID of the ACS system associated with the access-denied event.\n ",
"format": "uuid",
"type": "string"
},
"acs_user_id": {
"description": "\n undocumented: Unreleased.\n ---\n ID of the ACS user associated with the access-denied event.\n ",
"format": "uuid",
"type": "string"
},
"connected_account_custom_metadata": {
"additionalProperties": {
"oneOf": [
Expand Down Expand Up @@ -17019,6 +17034,11 @@
"format": "date-time",
"type": "string"
},
"user_identity_id": {
"description": "\n undocumented: Unreleased.\n ---\n ID of the user identity associated with the access-denied event.\n ",
"format": "uuid",
"type": "string"
},
"workspace_id": {
"description": "ID of the workspace associated with the event.",
"format": "uuid",
Expand All @@ -17030,7 +17050,6 @@
"workspace_id",
"created_at",
"occurred_at",
"device_id",
"connected_account_id",
"event_type"
],
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@prettier/plugin-ruby": "^4.0.4",
"@seamapi/blueprint": "^0.55.0",
"@seamapi/smith": "^0.5.2",
"@seamapi/types": "1.917.0",
"@seamapi/types": "1.918.0",
"@types/command-exists": "^1.2.3",
"change-case": "^5.4.4",
"command-exists": "^1.2.9",
Expand Down
Loading