@seamapi/types 1.430.0 → 1.432.0

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.
Files changed (25) hide show
  1. package/dist/connect.cjs +142 -60
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +519 -166
  4. package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js +2 -2
  5. package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  7. package/lib/seam/connect/models/acs/acs-credential.js +7 -2
  8. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  9. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  10. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  11. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  12. package/lib/seam/connect/models/phones/phone-session.d.ts +12 -0
  13. package/lib/seam/connect/models/user-identities/user-identity.d.ts +57 -4
  14. package/lib/seam/connect/models/user-identities/user-identity.js +27 -3
  15. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  16. package/lib/seam/connect/openapi.d.ts +69 -12
  17. package/lib/seam/connect/openapi.js +118 -55
  18. package/lib/seam/connect/openapi.js.map +1 -1
  19. package/lib/seam/connect/route-types.d.ts +401 -151
  20. package/package.json +1 -1
  21. package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +2 -2
  22. package/src/lib/seam/connect/models/acs/acs-credential.ts +9 -2
  23. package/src/lib/seam/connect/models/user-identities/user-identity.ts +37 -3
  24. package/src/lib/seam/connect/openapi.ts +130 -55
  25. package/src/lib/seam/connect/route-types.ts +401 -151
package/dist/connect.cjs CHANGED
@@ -2650,6 +2650,9 @@ var common_acs_credential = zod.z.object({
2650
2650
  acs_user_id: zod.z.string().uuid().optional().describe(
2651
2651
  "ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs."
2652
2652
  ),
2653
+ user_identity_id: zod.z.string().uuid().optional().describe(
2654
+ "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs."
2655
+ ),
2653
2656
  connected_account_id: zod.z.string().uuid().describe(
2654
2657
  "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs."
2655
2658
  ),
@@ -2711,7 +2714,7 @@ var common_acs_credential = zod.z.object({
2711
2714
  "Warnings associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials)."
2712
2715
  ),
2713
2716
  is_multi_phone_sync_credential: zod.z.boolean().optional().describe(
2714
- "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials)."
2717
+ "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials)."
2715
2718
  ),
2716
2719
  is_latest_desired_state_synced_with_provider: zod.z.boolean().nullable().optional().describe(
2717
2720
  "Indicates whether the latest state of the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) has been synced from Seam to the provider."
@@ -2792,7 +2795,7 @@ var acs_credential_on_encoder = zod.z.object({
2792
2795
  "Format of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials)."
2793
2796
  ),
2794
2797
  card_holder: zod.z.string().optional().describe(
2795
- "Holden of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials)."
2798
+ "Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials)."
2796
2799
  ),
2797
2800
  number_of_issued_cards: zod.z.number().describe(
2798
2801
  "Number of issued cards associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials)."
@@ -5313,11 +5316,27 @@ var user_identity_being_deleted = common_user_identity_warning.extend({
5313
5316
  "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue."
5314
5317
  )
5315
5318
  }).describe("Indicates that the user identity is currently being deleted.");
5316
- zod.z.object({});
5319
+ var user_identity_issue_with_acs_user = common_user_identity_error.extend({
5320
+ error_code: zod.z.literal("issue_with_acs_user").describe(
5321
+ "Unique identifier of the type of error. Enables quick recognition and categorization of the issue."
5322
+ ),
5323
+ acs_user_id: zod.z.string().uuid().describe("ID of the access system user that has an issue."),
5324
+ acs_system_id: zod.z.string().uuid().describe(
5325
+ "ID of the access system that the user identity is associated with."
5326
+ )
5327
+ }).describe(
5328
+ "Indicates that there is an issue with an access system user associated with this user identity."
5329
+ );
5330
+ zod.z.object({
5331
+ issue_with_acs_user: zod.z.record(zod.z.string().uuid(), user_identity_issue_with_acs_user).optional().nullable().describe(
5332
+ "Map of access system user IDs to issues with the access system user. The key is the access system user ID, and the value is the issue with the access system user."
5333
+ )
5334
+ });
5317
5335
  var user_identity_warnings = zod.z.discriminatedUnion("warning_code", [user_identity_being_deleted]).describe("Warnings associated with the user identity.");
5318
5336
  zod.z.object({
5319
5337
  user_identity_being_deleted: user_identity_being_deleted.optional().nullable()
5320
5338
  });
5339
+ var user_identity_errors = zod.z.discriminatedUnion("error_code", [user_identity_issue_with_acs_user]).describe("Errors associated with the user identity.");
5321
5340
  var user_identity = zod.z.object({
5322
5341
  user_identity_id: zod.z.string().uuid().describe("ID of the user identity."),
5323
5342
  user_identity_key: zod.z.string().min(1).nullable().describe("Unique key for the user identity."),
@@ -5331,8 +5350,8 @@ var user_identity = zod.z.object({
5331
5350
  workspace_id: zod.z.string().uuid().describe(
5332
5351
  "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity."
5333
5352
  ),
5334
- errors: zod.z.array(common_user_identity_error).describe(
5335
- 'Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.'
5353
+ errors: zod.z.array(user_identity_errors).describe(
5354
+ 'Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.'
5336
5355
  ),
5337
5356
  warnings: zod.z.array(user_identity_warnings).describe(
5338
5357
  'Array of warnings associated with the user identity. Each warning object within the array contains two fields: "warning_code" and "message." "warning_code" is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it.'
@@ -7384,7 +7403,7 @@ var openapi_default = {
7384
7403
  },
7385
7404
  is_managed: { enum: [true], type: "boolean" },
7386
7405
  is_multi_phone_sync_credential: {
7387
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
7406
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
7388
7407
  type: "boolean"
7389
7408
  },
7390
7409
  is_one_time_use: {
@@ -7412,6 +7431,11 @@ var openapi_default = {
7412
7431
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
7413
7432
  type: "string"
7414
7433
  },
7434
+ user_identity_id: {
7435
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
7436
+ format: "uuid",
7437
+ type: "string"
7438
+ },
7415
7439
  visionline_metadata: {
7416
7440
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
7417
7441
  properties: {
@@ -9276,7 +9300,7 @@ var openapi_default = {
9276
9300
  type: "string"
9277
9301
  },
9278
9302
  card_holder: {
9279
- description: "Holden of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
9303
+ description: "Holder of the card associated with the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
9280
9304
  type: "string"
9281
9305
  },
9282
9306
  card_id: {
@@ -9474,7 +9498,7 @@ var openapi_default = {
9474
9498
  },
9475
9499
  is_managed: { enum: [true], type: "boolean" },
9476
9500
  is_multi_phone_sync_credential: {
9477
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
9501
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
9478
9502
  type: "boolean"
9479
9503
  },
9480
9504
  is_one_time_use: {
@@ -9502,6 +9526,11 @@ var openapi_default = {
9502
9526
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
9503
9527
  type: "string"
9504
9528
  },
9529
+ user_identity_id: {
9530
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
9531
+ format: "uuid",
9532
+ type: "string"
9533
+ },
9505
9534
  visionline_metadata: {
9506
9535
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
9507
9536
  properties: {
@@ -9857,7 +9886,7 @@ var openapi_default = {
9857
9886
  },
9858
9887
  is_managed: { enum: [false], type: "boolean" },
9859
9888
  is_multi_phone_sync_credential: {
9860
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
9889
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
9861
9890
  type: "boolean"
9862
9891
  },
9863
9892
  is_one_time_use: {
@@ -9885,6 +9914,11 @@ var openapi_default = {
9885
9914
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
9886
9915
  type: "string"
9887
9916
  },
9917
+ user_identity_id: {
9918
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
9919
+ format: "uuid",
9920
+ type: "string"
9921
+ },
9888
9922
  visionline_metadata: {
9889
9923
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
9890
9924
  properties: {
@@ -10418,7 +10452,7 @@ var openapi_default = {
10418
10452
  },
10419
10453
  is_managed: { enum: [true], type: "boolean" },
10420
10454
  is_multi_phone_sync_credential: {
10421
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
10455
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
10422
10456
  type: "boolean"
10423
10457
  },
10424
10458
  is_one_time_use: {
@@ -10446,6 +10480,11 @@ var openapi_default = {
10446
10480
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
10447
10481
  type: "string"
10448
10482
  },
10483
+ user_identity_id: {
10484
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
10485
+ format: "uuid",
10486
+ type: "string"
10487
+ },
10449
10488
  visionline_metadata: {
10450
10489
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
10451
10490
  properties: {
@@ -10799,7 +10838,7 @@ var openapi_default = {
10799
10838
  },
10800
10839
  is_managed: { enum: [false], type: "boolean" },
10801
10840
  is_multi_phone_sync_credential: {
10802
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
10841
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
10803
10842
  type: "boolean"
10804
10843
  },
10805
10844
  is_one_time_use: {
@@ -10827,6 +10866,11 @@ var openapi_default = {
10827
10866
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
10828
10867
  type: "string"
10829
10868
  },
10869
+ user_identity_id: {
10870
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
10871
+ format: "uuid",
10872
+ type: "string"
10873
+ },
10830
10874
  visionline_metadata: {
10831
10875
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
10832
10876
  properties: {
@@ -16722,7 +16766,7 @@ var openapi_default = {
16722
16766
  },
16723
16767
  enrollment_automation: {
16724
16768
  deprecated: true,
16725
- description: "Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access-in-development).",
16769
+ description: "Represents an [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) within the [Seam mobile access solution](https://docs.seam.co/latest/capability-guides/mobile-access/).",
16726
16770
  properties: {
16727
16771
  created_at: {
16728
16772
  description: "Date and time at which the enrollment automation was created.",
@@ -16740,7 +16784,7 @@ var openapi_default = {
16740
16784
  type: "string"
16741
16785
  },
16742
16786
  user_identity_id: {
16743
- description: "ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
16787
+ description: "ID of the associated [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
16744
16788
  format: "uuid",
16745
16789
  type: "string"
16746
16790
  },
@@ -22267,7 +22311,7 @@ var openapi_default = {
22267
22311
  },
22268
22312
  is_managed: { enum: [true], type: "boolean" },
22269
22313
  is_multi_phone_sync_credential: {
22270
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
22314
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
22271
22315
  type: "boolean"
22272
22316
  },
22273
22317
  is_one_time_use: {
@@ -22295,6 +22339,11 @@ var openapi_default = {
22295
22339
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
22296
22340
  type: "string"
22297
22341
  },
22342
+ user_identity_id: {
22343
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
22344
+ format: "uuid",
22345
+ type: "string"
22346
+ },
22298
22347
  visionline_metadata: {
22299
22348
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
22300
22349
  properties: {
@@ -24502,7 +24551,7 @@ var openapi_default = {
24502
24551
  },
24503
24552
  is_managed: { enum: [false], type: "boolean" },
24504
24553
  is_multi_phone_sync_credential: {
24505
- description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
24554
+ description: "Indicates whether the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
24506
24555
  type: "boolean"
24507
24556
  },
24508
24557
  is_one_time_use: {
@@ -24530,6 +24579,11 @@ var openapi_default = {
24530
24579
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) validity starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
24531
24580
  type: "string"
24532
24581
  },
24582
+ user_identity_id: {
24583
+ description: "ID of the [user identity](https://docs.seam.co/latest/api/user_identities) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
24584
+ format: "uuid",
24585
+ type: "string"
24586
+ },
24533
24587
  visionline_metadata: {
24534
24588
  description: "Visionline-specific metadata for the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials).",
24535
24589
  properties: {
@@ -26605,21 +26659,49 @@ var openapi_default = {
26605
26659
  type: "string"
26606
26660
  },
26607
26661
  errors: {
26608
- description: 'Array of errors associated with the user identity. Each error object within the array contains two fields: "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
26662
+ description: 'Array of errors associated with the user identity. Each error object within the array contains fields like "error_code" and "message." "error_code" is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. "message" provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.',
26609
26663
  items: {
26610
- properties: {
26611
- created_at: {
26612
- description: "Date and time at which Seam created the error.",
26613
- format: "date-time",
26614
- type: "string"
26615
- },
26616
- message: {
26617
- description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
26618
- type: "string"
26664
+ description: "Errors associated with the user identity.",
26665
+ discriminator: { propertyName: "error_code" },
26666
+ oneOf: [
26667
+ {
26668
+ description: "Indicates that there is an issue with an access system user associated with this user identity.",
26669
+ properties: {
26670
+ acs_system_id: {
26671
+ description: "ID of the access system that the user identity is associated with.",
26672
+ format: "uuid",
26673
+ type: "string"
26674
+ },
26675
+ acs_user_id: {
26676
+ description: "ID of the access system user that has an issue.",
26677
+ format: "uuid",
26678
+ type: "string"
26679
+ },
26680
+ created_at: {
26681
+ description: "Date and time at which Seam created the error.",
26682
+ format: "date-time",
26683
+ type: "string"
26684
+ },
26685
+ error_code: {
26686
+ description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
26687
+ enum: ["issue_with_acs_user"],
26688
+ type: "string"
26689
+ },
26690
+ message: {
26691
+ description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
26692
+ type: "string"
26693
+ }
26694
+ },
26695
+ required: [
26696
+ "created_at",
26697
+ "message",
26698
+ "error_code",
26699
+ "acs_user_id",
26700
+ "acs_system_id"
26701
+ ],
26702
+ type: "object"
26619
26703
  }
26620
- },
26621
- required: ["created_at", "message"],
26622
- type: "object"
26704
+ ]
26623
26705
  },
26624
26706
  type: "array"
26625
26707
  },
@@ -31510,7 +31592,7 @@ var openapi_default = {
31510
31592
  },
31511
31593
  is_multi_phone_sync_credential: {
31512
31594
  default: false,
31513
- description: "Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
31595
+ description: "Indicates whether the new credential is a [multi-phone sync credential](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#what-are-multi-phone-sync-credentials).",
31514
31596
  type: "boolean"
31515
31597
  },
31516
31598
  salto_space_metadata: {
@@ -53247,7 +53329,7 @@ var openapi_default = {
53247
53329
  },
53248
53330
  "/user_identities/add_acs_user": {
53249
53331
  post: {
53250
- description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53332
+ description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53251
53333
  operationId: "userIdentitiesAddAcsUserPost",
53252
53334
  requestBody: {
53253
53335
  content: {
@@ -53300,7 +53382,7 @@ var openapi_default = {
53300
53382
  "x-title": "Add an ACS User to a User Identity"
53301
53383
  },
53302
53384
  put: {
53303
- description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53385
+ description: "Adds a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53304
53386
  operationId: "userIdentitiesAddAcsUserPut",
53305
53387
  requestBody: {
53306
53388
  content: {
@@ -53355,7 +53437,7 @@ var openapi_default = {
53355
53437
  },
53356
53438
  "/user_identities/create": {
53357
53439
  post: {
53358
- description: "Creates a new [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53440
+ description: "Creates a new [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53359
53441
  operationId: "userIdentitiesCreatePost",
53360
53442
  requestBody: {
53361
53443
  content: {
@@ -53433,7 +53515,7 @@ var openapi_default = {
53433
53515
  },
53434
53516
  "/user_identities/delete": {
53435
53517
  delete: {
53436
- description: "Deletes a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This deletes the user identity and all associated resources, including any [credentials](https://docs.seam.co/latest/api/access-control-systems/credentials), [acs users](https://docs.seam.co/latest/api/access-control-systems/users) and [client sessions](https://docs.seam.co/latest/api/client_sessions).",
53518
+ description: "Deletes a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This deletes the user identity and all associated resources, including any [credentials](https://docs.seam.co/latest/api/access-control-systems/credentials), [acs users](https://docs.seam.co/latest/api/access-control-systems/users) and [client sessions](https://docs.seam.co/latest/api/client_sessions).",
53437
53519
  operationId: "userIdentitiesDeleteDelete",
53438
53520
  parameters: [
53439
53521
  {
@@ -53476,7 +53558,7 @@ var openapi_default = {
53476
53558
  "x-title": "Delete a User Identity"
53477
53559
  },
53478
53560
  post: {
53479
- description: "Deletes a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This deletes the user identity and all associated resources, including any [credentials](https://docs.seam.co/latest/api/access-control-systems/credentials), [acs users](https://docs.seam.co/latest/api/access-control-systems/users) and [client sessions](https://docs.seam.co/latest/api/client_sessions).",
53561
+ description: "Deletes a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity). This deletes the user identity and all associated resources, including any [credentials](https://docs.seam.co/latest/api/access-control-systems/credentials), [acs users](https://docs.seam.co/latest/api/access-control-systems/users) and [client sessions](https://docs.seam.co/latest/api/client_sessions).",
53480
53562
  operationId: "userIdentitiesDeletePost",
53481
53563
  requestBody: {
53482
53564
  content: {
@@ -53526,7 +53608,7 @@ var openapi_default = {
53526
53608
  },
53527
53609
  "/user_identities/enrollment_automations/delete": {
53528
53610
  delete: {
53529
- description: "Deletes a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system). You must delete all enrollment automations associated with a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) before [deleting the user identity](https://docs.seam.co/latest/api/user_identities/delete).",
53611
+ description: "Deletes a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system). You must delete all enrollment automations associated with a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) before [deleting the user identity](https://docs.seam.co/latest/api/user_identities/delete).",
53530
53612
  operationId: "userIdentitiesEnrollmentAutomationsDeleteDelete",
53531
53613
  parameters: [
53532
53614
  {
@@ -53570,7 +53652,7 @@ var openapi_default = {
53570
53652
  "x-title": "Delete an Enrollment Automation"
53571
53653
  },
53572
53654
  post: {
53573
- description: "Deletes a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system). You must delete all enrollment automations associated with a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) before [deleting the user identity](https://docs.seam.co/latest/api/user_identities/delete).",
53655
+ description: "Deletes a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system). You must delete all enrollment automations associated with a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) before [deleting the user identity](https://docs.seam.co/latest/api/user_identities/delete).",
53574
53656
  operationId: "userIdentitiesEnrollmentAutomationsDeletePost",
53575
53657
  requestBody: {
53576
53658
  content: {
@@ -53621,7 +53703,7 @@ var openapi_default = {
53621
53703
  },
53622
53704
  "/user_identities/enrollment_automations/get": {
53623
53705
  get: {
53624
- description: "Returns a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system).",
53706
+ description: "Returns a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system/).",
53625
53707
  operationId: "userIdentitiesEnrollmentAutomationsGetGet",
53626
53708
  parameters: [
53627
53709
  {
@@ -53672,7 +53754,7 @@ var openapi_default = {
53672
53754
  "x-title": "Get an Enrollment Automation"
53673
53755
  },
53674
53756
  post: {
53675
- description: "Returns a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system).",
53757
+ description: "Returns a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system/).",
53676
53758
  operationId: "userIdentitiesEnrollmentAutomationsGetPost",
53677
53759
  requestBody: {
53678
53760
  content: {
@@ -53730,7 +53812,7 @@ var openapi_default = {
53730
53812
  },
53731
53813
  "/user_identities/enrollment_automations/launch": {
53732
53814
  post: {
53733
- description: "Sets up a new [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) with a specified [credential manager](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system).",
53815
+ description: "Sets up a new [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) with a specified [credential manager](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system).",
53734
53816
  operationId: "userIdentitiesEnrollmentAutomationsLaunchPost",
53735
53817
  requestBody: {
53736
53818
  content: {
@@ -53809,7 +53891,7 @@ var openapi_default = {
53809
53891
  },
53810
53892
  "/user_identities/enrollment_automations/list": {
53811
53893
  get: {
53812
- description: "Returns a list of all [enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53894
+ description: "Returns a list of all [enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53813
53895
  operationId: "userIdentitiesEnrollmentAutomationsListGet",
53814
53896
  parameters: [
53815
53897
  {
@@ -53863,7 +53945,7 @@ var openapi_default = {
53863
53945
  "x-title": "List Enrollment Automations"
53864
53946
  },
53865
53947
  post: {
53866
- description: "Returns a list of all [enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53948
+ description: "Returns a list of all [enrollment automations](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53867
53949
  operationId: "userIdentitiesEnrollmentAutomationsListPost",
53868
53950
  requestBody: {
53869
53951
  content: {
@@ -53924,7 +54006,7 @@ var openapi_default = {
53924
54006
  },
53925
54007
  "/user_identities/generate_instant_key": {
53926
54008
  post: {
53927
- description: "Generates a new [instant key](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/instant-keys) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54009
+ description: "Generates a new [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys) for a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53928
54010
  operationId: "userIdentitiesGenerateInstantKeyPost",
53929
54011
  requestBody: {
53930
54012
  content: {
@@ -53984,7 +54066,7 @@ var openapi_default = {
53984
54066
  },
53985
54067
  "/user_identities/get": {
53986
54068
  get: {
53987
- description: "Returns a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54069
+ description: "Returns a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53988
54070
  operationId: "userIdentitiesGetGet",
53989
54071
  responses: {
53990
54072
  200: {
@@ -54021,7 +54103,7 @@ var openapi_default = {
54021
54103
  "x-title": "Get a User Identity"
54022
54104
  },
54023
54105
  post: {
54024
- description: "Returns a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54106
+ description: "Returns a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54025
54107
  operationId: "userIdentitiesGetPost",
54026
54108
  requestBody: {
54027
54109
  content: {
@@ -54086,7 +54168,7 @@ var openapi_default = {
54086
54168
  },
54087
54169
  "/user_identities/grant_access_to_device": {
54088
54170
  post: {
54089
- description: "Grants a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/).",
54171
+ description: "Grants a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/).",
54090
54172
  operationId: "userIdentitiesGrantAccessToDevicePost",
54091
54173
  requestBody: {
54092
54174
  content: {
@@ -54139,7 +54221,7 @@ var openapi_default = {
54139
54221
  "x-title": "Grant a User Identity Access to a Device"
54140
54222
  },
54141
54223
  put: {
54142
- description: "Grants a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/).",
54224
+ description: "Grants a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/).",
54143
54225
  operationId: "userIdentitiesGrantAccessToDevicePut",
54144
54226
  requestBody: {
54145
54227
  content: {
@@ -54194,7 +54276,7 @@ var openapi_default = {
54194
54276
  },
54195
54277
  "/user_identities/list": {
54196
54278
  get: {
54197
- description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54279
+ description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54198
54280
  operationId: "userIdentitiesListGet",
54199
54281
  parameters: [
54200
54282
  {
@@ -54252,7 +54334,7 @@ var openapi_default = {
54252
54334
  "x-title": "List User Identities"
54253
54335
  },
54254
54336
  post: {
54255
- description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54337
+ description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54256
54338
  operationId: "userIdentitiesListPost",
54257
54339
  requestBody: {
54258
54340
  content: {
@@ -54313,7 +54395,7 @@ var openapi_default = {
54313
54395
  },
54314
54396
  "/user_identities/list_accessible_devices": {
54315
54397
  get: {
54316
- description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54398
+ description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54317
54399
  operationId: "userIdentitiesListAccessibleDevicesGet",
54318
54400
  parameters: [
54319
54401
  {
@@ -54369,7 +54451,7 @@ var openapi_default = {
54369
54451
  "x-title": "List Accessible Devices for a User Identity"
54370
54452
  },
54371
54453
  post: {
54372
- description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54454
+ description: "Returns a list of all [devices](https://docs.seam.co/latest/core-concepts/devices) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54373
54455
  operationId: "userIdentitiesListAccessibleDevicesPost",
54374
54456
  requestBody: {
54375
54457
  content: {
@@ -54432,7 +54514,7 @@ var openapi_default = {
54432
54514
  },
54433
54515
  "/user_identities/list_acs_systems": {
54434
54516
  get: {
54435
- description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54517
+ description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54436
54518
  operationId: "userIdentitiesListAcsSystemsGet",
54437
54519
  parameters: [
54438
54520
  {
@@ -54483,7 +54565,7 @@ var openapi_default = {
54483
54565
  "x-title": "List ACS Systems Associated with a User Identity"
54484
54566
  },
54485
54567
  post: {
54486
- description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54568
+ description: "Returns a list of all [access systems](https://docs.seam.co/latest/capability-guides/access-systems) associated with a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54487
54569
  operationId: "userIdentitiesListAcsSystemsPost",
54488
54570
  requestBody: {
54489
54571
  content: {
@@ -54541,7 +54623,7 @@ var openapi_default = {
54541
54623
  },
54542
54624
  "/user_identities/list_acs_users": {
54543
54625
  get: {
54544
- description: "Returns a list of all [access system users](https://docs.seam.co/latest/capability-guides/access-systems/user-management) assigned to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54626
+ description: "Returns a list of all [access system users](https://docs.seam.co/latest/capability-guides/access-systems/user-management) assigned to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54545
54627
  operationId: "userIdentitiesListAcsUsersGet",
54546
54628
  parameters: [
54547
54629
  {
@@ -54591,7 +54673,7 @@ var openapi_default = {
54591
54673
  "x-title": "List ACS Users Associated with a User Identity"
54592
54674
  },
54593
54675
  post: {
54594
- description: "Returns a list of all [access system users](https://docs.seam.co/latest/capability-guides/access-systems/user-management) assigned to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54676
+ description: "Returns a list of all [access system users](https://docs.seam.co/latest/capability-guides/access-systems/user-management) assigned to a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54595
54677
  operationId: "userIdentitiesListAcsUsersPost",
54596
54678
  requestBody: {
54597
54679
  content: {
@@ -54648,7 +54730,7 @@ var openapi_default = {
54648
54730
  },
54649
54731
  "/user_identities/remove_acs_user": {
54650
54732
  delete: {
54651
- description: "Removes a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54733
+ description: "Removes a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54652
54734
  operationId: "userIdentitiesRemoveAcsUserDelete",
54653
54735
  parameters: [
54654
54736
  {
@@ -54701,7 +54783,7 @@ var openapi_default = {
54701
54783
  "x-title": "Remove an ACS User from a User Identity"
54702
54784
  },
54703
54785
  post: {
54704
- description: "Removes a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54786
+ description: "Removes a specified [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54705
54787
  operationId: "userIdentitiesRemoveAcsUserPost",
54706
54788
  requestBody: {
54707
54789
  content: {
@@ -54756,7 +54838,7 @@ var openapi_default = {
54756
54838
  },
54757
54839
  "/user_identities/revoke_access_to_device": {
54758
54840
  delete: {
54759
- description: "Revokes access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54841
+ description: "Revokes access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54760
54842
  operationId: "userIdentitiesRevokeAccessToDeviceDelete",
54761
54843
  parameters: [
54762
54844
  {
@@ -54809,7 +54891,7 @@ var openapi_default = {
54809
54891
  "x-title": "Revoke Access to a Device from a User Identity"
54810
54892
  },
54811
54893
  post: {
54812
- description: "Revokes access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54894
+ description: "Revokes access to a specified [device](https://docs.seam.co/latest/core-concepts/devices/) from a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54813
54895
  operationId: "userIdentitiesRevokeAccessToDevicePost",
54814
54896
  requestBody: {
54815
54897
  content: {
@@ -54864,7 +54946,7 @@ var openapi_default = {
54864
54946
  },
54865
54947
  "/user_identities/update": {
54866
54948
  patch: {
54867
- description: "Updates a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54949
+ description: "Updates a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54868
54950
  operationId: "userIdentitiesUpdatePatch",
54869
54951
  requestBody: {
54870
54952
  content: {
@@ -54935,7 +55017,7 @@ var openapi_default = {
54935
55017
  "x-title": "Update a User Identity"
54936
55018
  },
54937
55019
  post: {
54938
- description: "Updates a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
55020
+ description: "Updates a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
54939
55021
  operationId: "userIdentitiesUpdatePost",
54940
55022
  requestBody: {
54941
55023
  content: {