@seamapi/types 1.404.0 → 1.404.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +504 -143
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +516 -23
- package/lib/seam/connect/models/connect-webviews/connect-webview.js +55 -15
- package/lib/seam/connect/models/connect-webviews/connect-webview.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js +121 -41
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/custom-metadata.js +5 -2
- package/lib/seam/connect/models/custom-metadata.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +148 -9
- package/lib/seam/connect/openapi.js +378 -89
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +368 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connect-webviews/connect-webview.ts +79 -15
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +172 -44
- package/src/lib/seam/connect/models/custom-metadata.ts +8 -4
- package/src/lib/seam/connect/openapi.ts +471 -89
- package/src/lib/seam/connect/route-types.ts +368 -14
|
@@ -1105,16 +1105,28 @@ export default {
|
|
|
1105
1105
|
enum: ['invalid_credentials'],
|
|
1106
1106
|
type: 'string',
|
|
1107
1107
|
},
|
|
1108
|
-
is_bridge_error: {
|
|
1109
|
-
|
|
1110
|
-
|
|
1108
|
+
is_bridge_error: {
|
|
1109
|
+
description:
|
|
1110
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
1111
|
+
type: 'boolean',
|
|
1112
|
+
},
|
|
1113
|
+
is_connected_account_error: {
|
|
1114
|
+
description:
|
|
1115
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
1116
|
+
type: 'boolean',
|
|
1117
|
+
},
|
|
1118
|
+
message: {
|
|
1119
|
+
description:
|
|
1120
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1121
|
+
type: 'string',
|
|
1122
|
+
},
|
|
1111
1123
|
},
|
|
1112
1124
|
required: ['created_at', 'message', 'error_code'],
|
|
1113
1125
|
type: 'object',
|
|
1114
1126
|
},
|
|
1115
1127
|
{
|
|
1116
1128
|
description:
|
|
1117
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline
|
|
1129
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), 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](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
1118
1130
|
properties: {
|
|
1119
1131
|
created_at: {
|
|
1120
1132
|
description:
|
|
@@ -1128,9 +1140,21 @@ export default {
|
|
|
1128
1140
|
enum: ['bridge_disconnected'],
|
|
1129
1141
|
type: 'string',
|
|
1130
1142
|
},
|
|
1131
|
-
is_bridge_error: {
|
|
1132
|
-
|
|
1133
|
-
|
|
1143
|
+
is_bridge_error: {
|
|
1144
|
+
description:
|
|
1145
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
1146
|
+
type: 'boolean',
|
|
1147
|
+
},
|
|
1148
|
+
is_connected_account_error: {
|
|
1149
|
+
description:
|
|
1150
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
1151
|
+
type: 'boolean',
|
|
1152
|
+
},
|
|
1153
|
+
message: {
|
|
1154
|
+
description:
|
|
1155
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
1156
|
+
type: 'string',
|
|
1157
|
+
},
|
|
1134
1158
|
},
|
|
1135
1159
|
required: ['created_at', 'message', 'error_code'],
|
|
1136
1160
|
type: 'object',
|
|
@@ -7173,39 +7197,70 @@ export default {
|
|
|
7173
7197
|
'x-deprecated': 'Unused. Will be removed.',
|
|
7174
7198
|
'x-undocumented': 'Unused. Will be removed.',
|
|
7175
7199
|
},
|
|
7176
|
-
accepted_providers: {
|
|
7200
|
+
accepted_providers: {
|
|
7201
|
+
description:
|
|
7202
|
+
'List of accepted [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews).',
|
|
7203
|
+
items: { type: 'string' },
|
|
7204
|
+
type: 'array',
|
|
7205
|
+
},
|
|
7177
7206
|
any_device_allowed: {
|
|
7178
7207
|
deprecated: true,
|
|
7179
7208
|
type: 'boolean',
|
|
7180
7209
|
'x-deprecated': 'Unused. Will be removed.',
|
|
7181
7210
|
'x-undocumented': 'Unused. Will be removed.',
|
|
7182
7211
|
},
|
|
7183
|
-
any_provider_allowed: {
|
|
7212
|
+
any_provider_allowed: {
|
|
7213
|
+
description: 'Indicates whether any provider is allowed.',
|
|
7214
|
+
type: 'boolean',
|
|
7215
|
+
},
|
|
7184
7216
|
authorized_at: {
|
|
7217
|
+
description:
|
|
7218
|
+
'Date and time at which the user authorized (through the Connect Webview) the management of their devices.',
|
|
7185
7219
|
format: 'date-time',
|
|
7186
7220
|
nullable: true,
|
|
7187
7221
|
type: 'string',
|
|
7188
7222
|
},
|
|
7189
|
-
automatically_manage_new_devices: {
|
|
7190
|
-
|
|
7223
|
+
automatically_manage_new_devices: {
|
|
7224
|
+
description:
|
|
7225
|
+
'Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API.',
|
|
7226
|
+
type: 'boolean',
|
|
7227
|
+
},
|
|
7228
|
+
connect_webview_id: {
|
|
7229
|
+
description: 'ID of the Connect Webview.',
|
|
7230
|
+
format: 'uuid',
|
|
7231
|
+
type: 'string',
|
|
7232
|
+
},
|
|
7191
7233
|
connected_account_id: {
|
|
7234
|
+
description:
|
|
7235
|
+
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the Connect Webview.',
|
|
7192
7236
|
format: 'uuid',
|
|
7193
7237
|
nullable: true,
|
|
7194
7238
|
type: 'string',
|
|
7195
7239
|
},
|
|
7196
|
-
created_at: {
|
|
7240
|
+
created_at: {
|
|
7241
|
+
description:
|
|
7242
|
+
'Date and time at which the Connect Webview was created.',
|
|
7243
|
+
format: 'date-time',
|
|
7244
|
+
type: 'string',
|
|
7245
|
+
},
|
|
7197
7246
|
custom_metadata: {
|
|
7198
7247
|
additionalProperties: {
|
|
7199
7248
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
7200
7249
|
},
|
|
7250
|
+
description:
|
|
7251
|
+
'Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.',
|
|
7201
7252
|
type: 'object',
|
|
7202
7253
|
},
|
|
7203
7254
|
custom_redirect_failure_url: {
|
|
7255
|
+
description:
|
|
7256
|
+
'URL to which the Connect Webview should redirect when an unexpected error occurs.',
|
|
7204
7257
|
format: 'uri',
|
|
7205
7258
|
nullable: true,
|
|
7206
7259
|
type: 'string',
|
|
7207
7260
|
},
|
|
7208
7261
|
custom_redirect_url: {
|
|
7262
|
+
description:
|
|
7263
|
+
'URL to which the Connect Webview should redirect when the user successfully pairs a device or system. If you do not set the `custom_redirect_failure_url`, the Connect Webview redirects to the `custom_redirect_url` when an unexpected error occurs.',
|
|
7209
7264
|
format: 'uri',
|
|
7210
7265
|
nullable: true,
|
|
7211
7266
|
type: 'string',
|
|
@@ -7214,12 +7269,40 @@ export default {
|
|
|
7214
7269
|
enum: ['none', 'single', 'multiple'],
|
|
7215
7270
|
type: 'string',
|
|
7216
7271
|
},
|
|
7217
|
-
login_successful: {
|
|
7218
|
-
|
|
7219
|
-
|
|
7220
|
-
|
|
7221
|
-
|
|
7222
|
-
|
|
7272
|
+
login_successful: {
|
|
7273
|
+
description:
|
|
7274
|
+
'Indicates whether the user logged in successfully using the Connect Webview.',
|
|
7275
|
+
type: 'boolean',
|
|
7276
|
+
},
|
|
7277
|
+
selected_provider: {
|
|
7278
|
+
description:
|
|
7279
|
+
'Selected provider of the Connect Webview, one of the [provider keys](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews).',
|
|
7280
|
+
nullable: true,
|
|
7281
|
+
type: 'string',
|
|
7282
|
+
},
|
|
7283
|
+
status: {
|
|
7284
|
+
description:
|
|
7285
|
+
'Status of the Connect Webview. `authorized` indicates that the user has successfully logged into their device or system account, thereby completing the Connect Webview.',
|
|
7286
|
+
enum: ['pending', 'failed', 'authorized'],
|
|
7287
|
+
type: 'string',
|
|
7288
|
+
},
|
|
7289
|
+
url: {
|
|
7290
|
+
description:
|
|
7291
|
+
'URL for the Connect Webview. You use the URL to display the Connect Webview flow to your user.',
|
|
7292
|
+
format: 'uri',
|
|
7293
|
+
type: 'string',
|
|
7294
|
+
},
|
|
7295
|
+
wait_for_device_creation: {
|
|
7296
|
+
description:
|
|
7297
|
+
'Indicates whether Seam should [finish syncing all devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#wait_for_device_creation) in a newly-connected account before completing the associated Connect Webview.',
|
|
7298
|
+
type: 'boolean',
|
|
7299
|
+
},
|
|
7300
|
+
workspace_id: {
|
|
7301
|
+
description:
|
|
7302
|
+
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the Connect Webview.',
|
|
7303
|
+
format: 'uuid',
|
|
7304
|
+
type: 'string',
|
|
7305
|
+
},
|
|
7223
7306
|
},
|
|
7224
7307
|
required: [
|
|
7225
7308
|
'connect_webview_id',
|
|
@@ -7249,18 +7332,40 @@ export default {
|
|
|
7249
7332
|
description:
|
|
7250
7333
|
'Represents a [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). A connected account is an external third-party account to which your user has authorized Seam to get access, for example, an August account with a list of door locks.',
|
|
7251
7334
|
properties: {
|
|
7252
|
-
account_type: {
|
|
7253
|
-
|
|
7254
|
-
|
|
7255
|
-
|
|
7256
|
-
|
|
7335
|
+
account_type: {
|
|
7336
|
+
description: 'Type of connected account.',
|
|
7337
|
+
type: 'string',
|
|
7338
|
+
},
|
|
7339
|
+
account_type_display_name: {
|
|
7340
|
+
description: 'Display name for the connected account type.',
|
|
7341
|
+
type: 'string',
|
|
7342
|
+
},
|
|
7343
|
+
automatically_manage_new_devices: {
|
|
7344
|
+
description:
|
|
7345
|
+
'Indicates whether Seam should [import all new devices](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#automatically_manage_new_devices) for the connected account to make these devices available for use and management by the Seam API.',
|
|
7346
|
+
type: 'boolean',
|
|
7347
|
+
},
|
|
7348
|
+
connected_account_id: {
|
|
7349
|
+
description: 'Unique identifier for the connected account.',
|
|
7350
|
+
format: 'uuid',
|
|
7351
|
+
type: 'string',
|
|
7352
|
+
},
|
|
7353
|
+
created_at: {
|
|
7354
|
+
description:
|
|
7355
|
+
'Date and time at which the connected account was created.',
|
|
7356
|
+
format: 'date-time',
|
|
7357
|
+
type: 'string',
|
|
7358
|
+
},
|
|
7257
7359
|
custom_metadata: {
|
|
7258
7360
|
additionalProperties: {
|
|
7259
7361
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
7260
7362
|
},
|
|
7363
|
+
description:
|
|
7364
|
+
'Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.',
|
|
7261
7365
|
type: 'object',
|
|
7262
7366
|
},
|
|
7263
7367
|
errors: {
|
|
7368
|
+
description: 'Errors associated with the connected account.',
|
|
7264
7369
|
items: {
|
|
7265
7370
|
discriminator: { propertyName: 'error_code' },
|
|
7266
7371
|
oneOf: [
|
|
@@ -7279,9 +7384,21 @@ export default {
|
|
|
7279
7384
|
enum: ['account_disconnected'],
|
|
7280
7385
|
type: 'string',
|
|
7281
7386
|
},
|
|
7282
|
-
is_bridge_error: {
|
|
7283
|
-
|
|
7284
|
-
|
|
7387
|
+
is_bridge_error: {
|
|
7388
|
+
description:
|
|
7389
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
7390
|
+
type: 'boolean',
|
|
7391
|
+
},
|
|
7392
|
+
is_connected_account_error: {
|
|
7393
|
+
description:
|
|
7394
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
7395
|
+
type: 'boolean',
|
|
7396
|
+
},
|
|
7397
|
+
message: {
|
|
7398
|
+
description:
|
|
7399
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7400
|
+
type: 'string',
|
|
7401
|
+
},
|
|
7285
7402
|
},
|
|
7286
7403
|
required: ['created_at', 'message', 'error_code'],
|
|
7287
7404
|
type: 'object',
|
|
@@ -7301,16 +7418,28 @@ export default {
|
|
|
7301
7418
|
enum: ['invalid_credentials'],
|
|
7302
7419
|
type: 'string',
|
|
7303
7420
|
},
|
|
7304
|
-
is_bridge_error: {
|
|
7305
|
-
|
|
7306
|
-
|
|
7421
|
+
is_bridge_error: {
|
|
7422
|
+
description:
|
|
7423
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
7424
|
+
type: 'boolean',
|
|
7425
|
+
},
|
|
7426
|
+
is_connected_account_error: {
|
|
7427
|
+
description:
|
|
7428
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
7429
|
+
type: 'boolean',
|
|
7430
|
+
},
|
|
7431
|
+
message: {
|
|
7432
|
+
description:
|
|
7433
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7434
|
+
type: 'string',
|
|
7435
|
+
},
|
|
7307
7436
|
},
|
|
7308
7437
|
required: ['created_at', 'message', 'error_code'],
|
|
7309
7438
|
type: 'object',
|
|
7310
7439
|
},
|
|
7311
7440
|
{
|
|
7312
7441
|
description:
|
|
7313
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline
|
|
7442
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), 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](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
7314
7443
|
properties: {
|
|
7315
7444
|
created_at: {
|
|
7316
7445
|
description:
|
|
@@ -7324,9 +7453,21 @@ export default {
|
|
|
7324
7453
|
enum: ['bridge_disconnected'],
|
|
7325
7454
|
type: 'string',
|
|
7326
7455
|
},
|
|
7327
|
-
is_bridge_error: {
|
|
7328
|
-
|
|
7329
|
-
|
|
7456
|
+
is_bridge_error: {
|
|
7457
|
+
description:
|
|
7458
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
7459
|
+
type: 'boolean',
|
|
7460
|
+
},
|
|
7461
|
+
is_connected_account_error: {
|
|
7462
|
+
description:
|
|
7463
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
7464
|
+
type: 'boolean',
|
|
7465
|
+
},
|
|
7466
|
+
message: {
|
|
7467
|
+
description:
|
|
7468
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7469
|
+
type: 'string',
|
|
7470
|
+
},
|
|
7330
7471
|
},
|
|
7331
7472
|
required: ['created_at', 'message', 'error_code'],
|
|
7332
7473
|
type: 'object',
|
|
@@ -7347,21 +7488,51 @@ export default {
|
|
|
7347
7488
|
enum: ['salto_ks_subscription_limit_exceeded'],
|
|
7348
7489
|
type: 'string',
|
|
7349
7490
|
},
|
|
7350
|
-
is_bridge_error: {
|
|
7351
|
-
|
|
7352
|
-
|
|
7491
|
+
is_bridge_error: {
|
|
7492
|
+
description:
|
|
7493
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
7494
|
+
type: 'boolean',
|
|
7495
|
+
},
|
|
7496
|
+
is_connected_account_error: {
|
|
7497
|
+
description:
|
|
7498
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
7499
|
+
type: 'boolean',
|
|
7500
|
+
},
|
|
7501
|
+
message: {
|
|
7502
|
+
description:
|
|
7503
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
7504
|
+
type: 'string',
|
|
7505
|
+
},
|
|
7353
7506
|
salto_ks_metadata: {
|
|
7507
|
+
description:
|
|
7508
|
+
'Salto KS metadata associated with the connected account that has an error.',
|
|
7354
7509
|
properties: {
|
|
7355
7510
|
sites: {
|
|
7511
|
+
description:
|
|
7512
|
+
'Salto sites associated with the connected account that has an error.',
|
|
7356
7513
|
items: {
|
|
7514
|
+
description:
|
|
7515
|
+
'Salto site associated with the connected account that has an error.',
|
|
7357
7516
|
properties: {
|
|
7358
|
-
site_id: {
|
|
7359
|
-
|
|
7517
|
+
site_id: {
|
|
7518
|
+
description:
|
|
7519
|
+
'ID of a Salto site associated with the connected account that has an error.',
|
|
7520
|
+
type: 'string',
|
|
7521
|
+
},
|
|
7522
|
+
site_name: {
|
|
7523
|
+
description:
|
|
7524
|
+
'Name of a Salto site associated with the connected account that has an error.',
|
|
7525
|
+
type: 'string',
|
|
7526
|
+
},
|
|
7360
7527
|
site_user_subscription_limit: {
|
|
7528
|
+
description:
|
|
7529
|
+
'Subscription limit of site users for a Salto site associated with the connected account that has an error.',
|
|
7361
7530
|
minimum: 0,
|
|
7362
7531
|
type: 'integer',
|
|
7363
7532
|
},
|
|
7364
7533
|
subscribed_site_user_count: {
|
|
7534
|
+
description:
|
|
7535
|
+
'Count of subscribed site users for a Salto site associated with the connected account that has an error.',
|
|
7365
7536
|
minimum: 0,
|
|
7366
7537
|
type: 'integer',
|
|
7367
7538
|
},
|
|
@@ -7394,22 +7565,46 @@ export default {
|
|
|
7394
7565
|
type: 'array',
|
|
7395
7566
|
},
|
|
7396
7567
|
user_identifier: {
|
|
7568
|
+
description:
|
|
7569
|
+
'User identifier associated with the connected account.',
|
|
7397
7570
|
properties: {
|
|
7398
|
-
api_url: {
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7402
|
-
|
|
7571
|
+
api_url: {
|
|
7572
|
+
description:
|
|
7573
|
+
'API URL for the user identifier associated with the connected account.',
|
|
7574
|
+
type: 'string',
|
|
7575
|
+
},
|
|
7576
|
+
email: {
|
|
7577
|
+
description:
|
|
7578
|
+
'Email address of the user identifier associated with the connected account.',
|
|
7579
|
+
type: 'string',
|
|
7580
|
+
},
|
|
7581
|
+
exclusive: {
|
|
7582
|
+
description:
|
|
7583
|
+
'Indicates whether the user identifier associated with the connected account is exclusive.',
|
|
7584
|
+
type: 'boolean',
|
|
7585
|
+
},
|
|
7586
|
+
phone: {
|
|
7587
|
+
description:
|
|
7588
|
+
'Phone number of the user identifier associated with the connected account.',
|
|
7589
|
+
type: 'string',
|
|
7590
|
+
},
|
|
7591
|
+
username: {
|
|
7592
|
+
description:
|
|
7593
|
+
'Username of the user identifier associated with the connected account.',
|
|
7594
|
+
type: 'string',
|
|
7595
|
+
},
|
|
7403
7596
|
},
|
|
7404
7597
|
type: 'object',
|
|
7405
7598
|
},
|
|
7406
7599
|
warnings: {
|
|
7600
|
+
description: 'Warnings associated with the connected account.',
|
|
7407
7601
|
items: {
|
|
7408
|
-
description: 'Warning associated with the
|
|
7602
|
+
description: 'Warning associated with the connected account.',
|
|
7409
7603
|
discriminator: { propertyName: 'warning_code' },
|
|
7410
7604
|
oneOf: [
|
|
7411
7605
|
{
|
|
7412
|
-
description:
|
|
7606
|
+
description:
|
|
7607
|
+
'Scheduled downtime planned for the connected account.',
|
|
7413
7608
|
properties: {
|
|
7414
7609
|
created_at: {
|
|
7415
7610
|
description:
|
|
@@ -7417,7 +7612,11 @@ export default {
|
|
|
7417
7612
|
format: 'date-time',
|
|
7418
7613
|
type: 'string',
|
|
7419
7614
|
},
|
|
7420
|
-
message: {
|
|
7615
|
+
message: {
|
|
7616
|
+
description:
|
|
7617
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
7618
|
+
type: 'string',
|
|
7619
|
+
},
|
|
7421
7620
|
warning_code: {
|
|
7422
7621
|
description:
|
|
7423
7622
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -7430,7 +7629,7 @@ export default {
|
|
|
7430
7629
|
},
|
|
7431
7630
|
{
|
|
7432
7631
|
description:
|
|
7433
|
-
'An unknown issue occurred while syncing the state of
|
|
7632
|
+
'An unknown issue occurred while syncing the state of the connected account with the provider. This issue may affect the proper functioning of one or more resources in the account.',
|
|
7434
7633
|
properties: {
|
|
7435
7634
|
created_at: {
|
|
7436
7635
|
description:
|
|
@@ -7438,7 +7637,11 @@ export default {
|
|
|
7438
7637
|
format: 'date-time',
|
|
7439
7638
|
type: 'string',
|
|
7440
7639
|
},
|
|
7441
|
-
message: {
|
|
7640
|
+
message: {
|
|
7641
|
+
description:
|
|
7642
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
7643
|
+
type: 'string',
|
|
7644
|
+
},
|
|
7442
7645
|
warning_code: {
|
|
7443
7646
|
description:
|
|
7444
7647
|
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
@@ -7451,7 +7654,7 @@ export default {
|
|
|
7451
7654
|
},
|
|
7452
7655
|
{
|
|
7453
7656
|
description:
|
|
7454
|
-
'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users.
|
|
7657
|
+
'Indicates that the Salto KS site has exceeded 80% of the maximum number of allowed users. Increase your subscription limit or delete some users from your site.',
|
|
7455
7658
|
properties: {
|
|
7456
7659
|
created_at: {
|
|
7457
7660
|
description:
|
|
@@ -7459,19 +7662,41 @@ export default {
|
|
|
7459
7662
|
format: 'date-time',
|
|
7460
7663
|
type: 'string',
|
|
7461
7664
|
},
|
|
7462
|
-
message: {
|
|
7665
|
+
message: {
|
|
7666
|
+
description:
|
|
7667
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
7668
|
+
type: 'string',
|
|
7669
|
+
},
|
|
7463
7670
|
salto_ks_metadata: {
|
|
7671
|
+
description:
|
|
7672
|
+
'Salto KS metadata associated with the connected account that has a warning.',
|
|
7464
7673
|
properties: {
|
|
7465
7674
|
sites: {
|
|
7675
|
+
description:
|
|
7676
|
+
'Salto sites associated with the connected account that has a warning.',
|
|
7466
7677
|
items: {
|
|
7678
|
+
description:
|
|
7679
|
+
'Salto site associated with the connected account that has a warning.',
|
|
7467
7680
|
properties: {
|
|
7468
|
-
site_id: {
|
|
7469
|
-
|
|
7681
|
+
site_id: {
|
|
7682
|
+
description:
|
|
7683
|
+
'ID of a Salto site associated with the connected account that has a warning.',
|
|
7684
|
+
type: 'string',
|
|
7685
|
+
},
|
|
7686
|
+
site_name: {
|
|
7687
|
+
description:
|
|
7688
|
+
'Name of a Salto site associated with the connected account that has a warning.',
|
|
7689
|
+
type: 'string',
|
|
7690
|
+
},
|
|
7470
7691
|
site_user_subscription_limit: {
|
|
7692
|
+
description:
|
|
7693
|
+
'Subscription limit of site users for a Salto site associated with the connected account that has a warning.',
|
|
7471
7694
|
minimum: 0,
|
|
7472
7695
|
type: 'integer',
|
|
7473
7696
|
},
|
|
7474
7697
|
subscribed_site_user_count: {
|
|
7698
|
+
description:
|
|
7699
|
+
'Count of subscribed site users for a Salto site associated with the connected account that has a warning.',
|
|
7475
7700
|
minimum: 0,
|
|
7476
7701
|
type: 'integer',
|
|
7477
7702
|
},
|
|
@@ -7567,6 +7792,8 @@ export default {
|
|
|
7567
7792
|
additionalProperties: {
|
|
7568
7793
|
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
7569
7794
|
},
|
|
7795
|
+
description:
|
|
7796
|
+
'Set of key:value pairs. Adding custom metadata to a resource, such as a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview), [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts/adding-custom-metadata-to-a-connected-account), or [device](https://docs.seam.co/latest/core-concepts/devices/adding-custom-metadata-to-a-device), enables you to store custom information, like customer details or internal IDs from your application.',
|
|
7570
7797
|
type: 'object',
|
|
7571
7798
|
},
|
|
7572
7799
|
device_id: {
|
|
@@ -7940,16 +8167,28 @@ export default {
|
|
|
7940
8167
|
enum: ['invalid_credentials'],
|
|
7941
8168
|
type: 'string',
|
|
7942
8169
|
},
|
|
7943
|
-
is_bridge_error: {
|
|
7944
|
-
|
|
7945
|
-
|
|
8170
|
+
is_bridge_error: {
|
|
8171
|
+
description:
|
|
8172
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
8173
|
+
type: 'boolean',
|
|
8174
|
+
},
|
|
8175
|
+
is_connected_account_error: {
|
|
8176
|
+
description:
|
|
8177
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
8178
|
+
type: 'boolean',
|
|
8179
|
+
},
|
|
8180
|
+
message: {
|
|
8181
|
+
description:
|
|
8182
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8183
|
+
type: 'string',
|
|
8184
|
+
},
|
|
7946
8185
|
},
|
|
7947
8186
|
required: ['created_at', 'message', 'error_code'],
|
|
7948
8187
|
type: 'object',
|
|
7949
8188
|
},
|
|
7950
8189
|
{
|
|
7951
8190
|
description:
|
|
7952
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline
|
|
8191
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), 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](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
7953
8192
|
properties: {
|
|
7954
8193
|
created_at: {
|
|
7955
8194
|
description:
|
|
@@ -7963,9 +8202,21 @@ export default {
|
|
|
7963
8202
|
enum: ['bridge_disconnected'],
|
|
7964
8203
|
type: 'string',
|
|
7965
8204
|
},
|
|
7966
|
-
is_bridge_error: {
|
|
7967
|
-
|
|
7968
|
-
|
|
8205
|
+
is_bridge_error: {
|
|
8206
|
+
description:
|
|
8207
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
8208
|
+
type: 'boolean',
|
|
8209
|
+
},
|
|
8210
|
+
is_connected_account_error: {
|
|
8211
|
+
description:
|
|
8212
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
8213
|
+
type: 'boolean',
|
|
8214
|
+
},
|
|
8215
|
+
message: {
|
|
8216
|
+
description:
|
|
8217
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
8218
|
+
type: 'string',
|
|
8219
|
+
},
|
|
7969
8220
|
},
|
|
7970
8221
|
required: ['created_at', 'message', 'error_code'],
|
|
7971
8222
|
type: 'object',
|
|
@@ -16944,16 +17195,28 @@ export default {
|
|
|
16944
17195
|
enum: ['invalid_credentials'],
|
|
16945
17196
|
type: 'string',
|
|
16946
17197
|
},
|
|
16947
|
-
is_bridge_error: {
|
|
16948
|
-
|
|
16949
|
-
|
|
17198
|
+
is_bridge_error: {
|
|
17199
|
+
description:
|
|
17200
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
17201
|
+
type: 'boolean',
|
|
17202
|
+
},
|
|
17203
|
+
is_connected_account_error: {
|
|
17204
|
+
description:
|
|
17205
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
17206
|
+
type: 'boolean',
|
|
17207
|
+
},
|
|
17208
|
+
message: {
|
|
17209
|
+
description:
|
|
17210
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
17211
|
+
type: 'string',
|
|
17212
|
+
},
|
|
16950
17213
|
},
|
|
16951
17214
|
required: ['created_at', 'message', 'error_code'],
|
|
16952
17215
|
type: 'object',
|
|
16953
17216
|
},
|
|
16954
17217
|
{
|
|
16955
17218
|
description:
|
|
16956
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline
|
|
17219
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), 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](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
16957
17220
|
properties: {
|
|
16958
17221
|
created_at: {
|
|
16959
17222
|
description:
|
|
@@ -16967,9 +17230,21 @@ export default {
|
|
|
16967
17230
|
enum: ['bridge_disconnected'],
|
|
16968
17231
|
type: 'string',
|
|
16969
17232
|
},
|
|
16970
|
-
is_bridge_error: {
|
|
16971
|
-
|
|
16972
|
-
|
|
17233
|
+
is_bridge_error: {
|
|
17234
|
+
description:
|
|
17235
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
17236
|
+
type: 'boolean',
|
|
17237
|
+
},
|
|
17238
|
+
is_connected_account_error: {
|
|
17239
|
+
description:
|
|
17240
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
17241
|
+
type: 'boolean',
|
|
17242
|
+
},
|
|
17243
|
+
message: {
|
|
17244
|
+
description:
|
|
17245
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
17246
|
+
type: 'string',
|
|
17247
|
+
},
|
|
16973
17248
|
},
|
|
16974
17249
|
required: ['created_at', 'message', 'error_code'],
|
|
16975
17250
|
type: 'object',
|
|
@@ -18860,16 +19135,28 @@ export default {
|
|
|
18860
19135
|
enum: ['invalid_credentials'],
|
|
18861
19136
|
type: 'string',
|
|
18862
19137
|
},
|
|
18863
|
-
is_bridge_error: {
|
|
18864
|
-
|
|
18865
|
-
|
|
19138
|
+
is_bridge_error: {
|
|
19139
|
+
description:
|
|
19140
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
19141
|
+
type: 'boolean',
|
|
19142
|
+
},
|
|
19143
|
+
is_connected_account_error: {
|
|
19144
|
+
description:
|
|
19145
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
19146
|
+
type: 'boolean',
|
|
19147
|
+
},
|
|
19148
|
+
message: {
|
|
19149
|
+
description:
|
|
19150
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
19151
|
+
type: 'string',
|
|
19152
|
+
},
|
|
18866
19153
|
},
|
|
18867
19154
|
required: ['created_at', 'message', 'error_code'],
|
|
18868
19155
|
type: 'object',
|
|
18869
19156
|
},
|
|
18870
19157
|
{
|
|
18871
19158
|
description:
|
|
18872
|
-
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline
|
|
19159
|
+
'Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), 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](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).',
|
|
18873
19160
|
properties: {
|
|
18874
19161
|
created_at: {
|
|
18875
19162
|
description:
|
|
@@ -18883,9 +19170,21 @@ export default {
|
|
|
18883
19170
|
enum: ['bridge_disconnected'],
|
|
18884
19171
|
type: 'string',
|
|
18885
19172
|
},
|
|
18886
|
-
is_bridge_error: {
|
|
18887
|
-
|
|
18888
|
-
|
|
19173
|
+
is_bridge_error: {
|
|
19174
|
+
description:
|
|
19175
|
+
'Indicates whether the error is related to Seam Bridge.',
|
|
19176
|
+
type: 'boolean',
|
|
19177
|
+
},
|
|
19178
|
+
is_connected_account_error: {
|
|
19179
|
+
description:
|
|
19180
|
+
'Indicates whether the error is related specifically to the connected account.',
|
|
19181
|
+
type: 'boolean',
|
|
19182
|
+
},
|
|
19183
|
+
message: {
|
|
19184
|
+
description:
|
|
19185
|
+
'Detailed description of the error. Provides insights into the issue and potentially how to rectify it.',
|
|
19186
|
+
type: 'string',
|
|
19187
|
+
},
|
|
18889
19188
|
},
|
|
18890
19189
|
required: ['created_at', 'message', 'error_code'],
|
|
18891
19190
|
type: 'object',
|
|
@@ -24670,14 +24969,25 @@ export default {
|
|
|
24670
24969
|
'application/json': {
|
|
24671
24970
|
schema: {
|
|
24672
24971
|
properties: {
|
|
24972
|
+
acs_system_id: {
|
|
24973
|
+
description:
|
|
24974
|
+
'ID of the access system that you want to delete. You must provide acs_system_id with user_identity_id.',
|
|
24975
|
+
format: 'uuid',
|
|
24976
|
+
type: 'string',
|
|
24977
|
+
},
|
|
24673
24978
|
acs_user_id: {
|
|
24674
24979
|
description:
|
|
24675
|
-
'ID of the access system user that you want to delete.',
|
|
24980
|
+
'ID of the access system user that you want to delete. You must provide either acs_user_id or user_identity_id',
|
|
24981
|
+
format: 'uuid',
|
|
24982
|
+
type: 'string',
|
|
24983
|
+
},
|
|
24984
|
+
user_identity_id: {
|
|
24985
|
+
description:
|
|
24986
|
+
'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.',
|
|
24676
24987
|
format: 'uuid',
|
|
24677
24988
|
type: 'string',
|
|
24678
24989
|
},
|
|
24679
24990
|
},
|
|
24680
|
-
required: ['acs_user_id'],
|
|
24681
24991
|
type: 'object',
|
|
24682
24992
|
},
|
|
24683
24993
|
},
|
|
@@ -24722,14 +25032,25 @@ export default {
|
|
|
24722
25032
|
'application/json': {
|
|
24723
25033
|
schema: {
|
|
24724
25034
|
properties: {
|
|
25035
|
+
acs_system_id: {
|
|
25036
|
+
description:
|
|
25037
|
+
'ID of the access system that you want to get. You can only provide acs_user_id or user_identity_id.',
|
|
25038
|
+
format: 'uuid',
|
|
25039
|
+
type: 'string',
|
|
25040
|
+
},
|
|
24725
25041
|
acs_user_id: {
|
|
24726
25042
|
description:
|
|
24727
|
-
'ID of the access system user that you want to get.',
|
|
25043
|
+
'ID of the access system user that you want to get. You can only provide acs_user_id or user_identity_id.',
|
|
25044
|
+
format: 'uuid',
|
|
25045
|
+
type: 'string',
|
|
25046
|
+
},
|
|
25047
|
+
user_identity_id: {
|
|
25048
|
+
description:
|
|
25049
|
+
'ID of the user identity that you want to get. You can only provide acs_user_id or user_identity_id.',
|
|
24728
25050
|
format: 'uuid',
|
|
24729
25051
|
type: 'string',
|
|
24730
25052
|
},
|
|
24731
25053
|
},
|
|
24732
|
-
required: ['acs_user_id'],
|
|
24733
25054
|
type: 'object',
|
|
24734
25055
|
},
|
|
24735
25056
|
},
|
|
@@ -24959,12 +25280,18 @@ export default {
|
|
|
24959
25280
|
},
|
|
24960
25281
|
acs_user_id: {
|
|
24961
25282
|
description:
|
|
24962
|
-
'ID of the access system user that you want to remove from an access group.',
|
|
25283
|
+
'ID of the access system user that you want to remove from an access group. You can only provide acs_user_id or user_identity_id.',
|
|
25284
|
+
format: 'uuid',
|
|
25285
|
+
type: 'string',
|
|
25286
|
+
},
|
|
25287
|
+
user_identity_id: {
|
|
25288
|
+
description:
|
|
25289
|
+
'ID of the user identity that you want to remove from an access group. You can only provide acs_user_id or user_identity_id.',
|
|
24963
25290
|
format: 'uuid',
|
|
24964
25291
|
type: 'string',
|
|
24965
25292
|
},
|
|
24966
25293
|
},
|
|
24967
|
-
required: ['
|
|
25294
|
+
required: ['acs_access_group_id'],
|
|
24968
25295
|
type: 'object',
|
|
24969
25296
|
},
|
|
24970
25297
|
},
|
|
@@ -25009,14 +25336,25 @@ export default {
|
|
|
25009
25336
|
'application/json': {
|
|
25010
25337
|
schema: {
|
|
25011
25338
|
properties: {
|
|
25339
|
+
acs_system_id: {
|
|
25340
|
+
description:
|
|
25341
|
+
'ID of the access system for which you want to revoke access. You can only provide acs_system_id with user_identity_id.',
|
|
25342
|
+
format: 'uuid',
|
|
25343
|
+
type: 'string',
|
|
25344
|
+
},
|
|
25012
25345
|
acs_user_id: {
|
|
25013
25346
|
description:
|
|
25014
|
-
'ID of the access system user for whom you want to revoke access.',
|
|
25347
|
+
'ID of the access system user for whom you want to revoke access. You can only provide acs_user_id or user_identity_id.',
|
|
25348
|
+
format: 'uuid',
|
|
25349
|
+
type: 'string',
|
|
25350
|
+
},
|
|
25351
|
+
user_identity_id: {
|
|
25352
|
+
description:
|
|
25353
|
+
'ID of the user identity for whom you want to revoke access. You can only provide acs_user_id or user_identity_id.',
|
|
25015
25354
|
format: 'uuid',
|
|
25016
25355
|
type: 'string',
|
|
25017
25356
|
},
|
|
25018
25357
|
},
|
|
25019
|
-
required: ['acs_user_id'],
|
|
25020
25358
|
type: 'object',
|
|
25021
25359
|
},
|
|
25022
25360
|
},
|
|
@@ -25061,14 +25399,25 @@ export default {
|
|
|
25061
25399
|
'application/json': {
|
|
25062
25400
|
schema: {
|
|
25063
25401
|
properties: {
|
|
25402
|
+
acs_system_id: {
|
|
25403
|
+
description:
|
|
25404
|
+
'ID of the access system that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.',
|
|
25405
|
+
format: 'uuid',
|
|
25406
|
+
type: 'string',
|
|
25407
|
+
},
|
|
25064
25408
|
acs_user_id: {
|
|
25065
25409
|
description:
|
|
25066
|
-
'ID of the access system user that you want to suspend.',
|
|
25410
|
+
'ID of the access system user that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.',
|
|
25411
|
+
format: 'uuid',
|
|
25412
|
+
type: 'string',
|
|
25413
|
+
},
|
|
25414
|
+
user_identity_id: {
|
|
25415
|
+
description:
|
|
25416
|
+
'ID of the user identity that you want to suspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.',
|
|
25067
25417
|
format: 'uuid',
|
|
25068
25418
|
type: 'string',
|
|
25069
25419
|
},
|
|
25070
25420
|
},
|
|
25071
|
-
required: ['acs_user_id'],
|
|
25072
25421
|
type: 'object',
|
|
25073
25422
|
},
|
|
25074
25423
|
},
|
|
@@ -25256,14 +25605,25 @@ export default {
|
|
|
25256
25605
|
'application/json': {
|
|
25257
25606
|
schema: {
|
|
25258
25607
|
properties: {
|
|
25608
|
+
acs_system_id: {
|
|
25609
|
+
description:
|
|
25610
|
+
'ID of the access system of the user that you want to unsuspend. You can only provide acs_system_id with user_identity_id.',
|
|
25611
|
+
format: 'uuid',
|
|
25612
|
+
type: 'string',
|
|
25613
|
+
},
|
|
25259
25614
|
acs_user_id: {
|
|
25260
25615
|
description:
|
|
25261
|
-
'ID of the access system user that you want to unsuspend.',
|
|
25616
|
+
'ID of the access system user that you want to unsuspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.',
|
|
25617
|
+
format: 'uuid',
|
|
25618
|
+
type: 'string',
|
|
25619
|
+
},
|
|
25620
|
+
user_identity_id: {
|
|
25621
|
+
description:
|
|
25622
|
+
'ID of the user identity that you want to unsuspend. You can only provide acs_user_id or the combination of acs_system_id and user_identity_id.',
|
|
25262
25623
|
format: 'uuid',
|
|
25263
25624
|
type: 'string',
|
|
25264
25625
|
},
|
|
25265
25626
|
},
|
|
25266
|
-
required: ['acs_user_id'],
|
|
25267
25627
|
type: 'object',
|
|
25268
25628
|
},
|
|
25269
25629
|
},
|
|
@@ -25329,9 +25689,15 @@ export default {
|
|
|
25329
25689
|
required: ['starts_at', 'ends_at'],
|
|
25330
25690
|
type: 'object',
|
|
25331
25691
|
},
|
|
25692
|
+
acs_system_id: {
|
|
25693
|
+
description:
|
|
25694
|
+
'ID of the access system that you want to update. You can only provide acs_system_id with user_identity_id.',
|
|
25695
|
+
format: 'uuid',
|
|
25696
|
+
type: 'string',
|
|
25697
|
+
},
|
|
25332
25698
|
acs_user_id: {
|
|
25333
25699
|
description:
|
|
25334
|
-
'ID of the
|
|
25700
|
+
'ID of the access system user that you want to update. You can only provide acs_user_id or user_identity_id.',
|
|
25335
25701
|
format: 'uuid',
|
|
25336
25702
|
type: 'string',
|
|
25337
25703
|
},
|
|
@@ -25359,8 +25725,13 @@ export default {
|
|
|
25359
25725
|
'Phone number of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in E.164 format (for example, `+15555550100`).',
|
|
25360
25726
|
type: 'string',
|
|
25361
25727
|
},
|
|
25728
|
+
user_identity_id: {
|
|
25729
|
+
description:
|
|
25730
|
+
'ID of the user identity that you want to update. You can only provide acs_user_id or user_identity_id. If you provide user_identity_id, you must also provide acs_system_id.',
|
|
25731
|
+
format: 'uuid',
|
|
25732
|
+
type: 'string',
|
|
25733
|
+
},
|
|
25362
25734
|
},
|
|
25363
|
-
required: ['acs_user_id'],
|
|
25364
25735
|
type: 'object',
|
|
25365
25736
|
},
|
|
25366
25737
|
},
|
|
@@ -25423,9 +25794,15 @@ export default {
|
|
|
25423
25794
|
required: ['starts_at', 'ends_at'],
|
|
25424
25795
|
type: 'object',
|
|
25425
25796
|
},
|
|
25797
|
+
acs_system_id: {
|
|
25798
|
+
description:
|
|
25799
|
+
'ID of the access system that you want to update. You can only provide acs_system_id with user_identity_id.',
|
|
25800
|
+
format: 'uuid',
|
|
25801
|
+
type: 'string',
|
|
25802
|
+
},
|
|
25426
25803
|
acs_user_id: {
|
|
25427
25804
|
description:
|
|
25428
|
-
'ID of the
|
|
25805
|
+
'ID of the access system user that you want to update. You can only provide acs_user_id or user_identity_id.',
|
|
25429
25806
|
format: 'uuid',
|
|
25430
25807
|
type: 'string',
|
|
25431
25808
|
},
|
|
@@ -25453,8 +25830,13 @@ export default {
|
|
|
25453
25830
|
'Phone number of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) in E.164 format (for example, `+15555550100`).',
|
|
25454
25831
|
type: 'string',
|
|
25455
25832
|
},
|
|
25833
|
+
user_identity_id: {
|
|
25834
|
+
description:
|
|
25835
|
+
'ID of the user identity that you want to update. You can only provide acs_user_id or user_identity_id. If you provide user_identity_id, you must also provide acs_system_id.',
|
|
25836
|
+
format: 'uuid',
|
|
25837
|
+
type: 'string',
|
|
25838
|
+
},
|
|
25456
25839
|
},
|
|
25457
|
-
required: ['acs_user_id'],
|
|
25458
25840
|
type: 'object',
|
|
25459
25841
|
},
|
|
25460
25842
|
},
|