@seamapi/types 1.293.1 → 1.294.1
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 +282 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +148 -2
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +3 -5
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js +23 -6
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.js +26 -8
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +86 -0
- package/lib/seam/connect/openapi.js +249 -41
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +62 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential-provisioning-automation.ts +32 -7
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +34 -10
- package/src/lib/seam/connect/openapi.ts +287 -41
- package/src/lib/seam/connect/route-types.ts +62 -2
|
@@ -5168,19 +5168,45 @@ export default {
|
|
|
5168
5168
|
type: 'object',
|
|
5169
5169
|
},
|
|
5170
5170
|
enrollment_automation: {
|
|
5171
|
+
description:
|
|
5172
|
+
'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).',
|
|
5171
5173
|
properties: {
|
|
5172
|
-
created_at: {
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
|
|
5174
|
+
created_at: {
|
|
5175
|
+
description:
|
|
5176
|
+
'Date and time at which the enrollment automation was created.',
|
|
5177
|
+
format: 'date-time',
|
|
5178
|
+
type: 'string',
|
|
5179
|
+
},
|
|
5180
|
+
credential_manager_acs_system_id: {
|
|
5181
|
+
description:
|
|
5182
|
+
'ID of the associated [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) that serves as the credential manager.',
|
|
5183
|
+
format: 'uuid',
|
|
5184
|
+
type: 'string',
|
|
5185
|
+
},
|
|
5186
|
+
enrollment_automation_id: {
|
|
5187
|
+
description: 'ID of the enrollment automation.',
|
|
5188
|
+
format: 'uuid',
|
|
5189
|
+
type: 'string',
|
|
5190
|
+
},
|
|
5191
|
+
user_identity_id: {
|
|
5192
|
+
description:
|
|
5193
|
+
'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).',
|
|
5194
|
+
format: 'uuid',
|
|
5195
|
+
type: 'string',
|
|
5196
|
+
},
|
|
5197
|
+
workspace_id: {
|
|
5198
|
+
description:
|
|
5199
|
+
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the enrollment automation.',
|
|
5200
|
+
format: 'uuid',
|
|
5201
|
+
type: 'string',
|
|
5202
|
+
},
|
|
5177
5203
|
},
|
|
5178
5204
|
required: [
|
|
5205
|
+
'enrollment_automation_id',
|
|
5179
5206
|
'credential_manager_acs_system_id',
|
|
5180
5207
|
'user_identity_id',
|
|
5181
5208
|
'created_at',
|
|
5182
5209
|
'workspace_id',
|
|
5183
|
-
'enrollment_automation_id',
|
|
5184
5210
|
],
|
|
5185
5211
|
type: 'object',
|
|
5186
5212
|
},
|
|
@@ -5943,15 +5969,46 @@ export default {
|
|
|
5943
5969
|
type: 'object',
|
|
5944
5970
|
},
|
|
5945
5971
|
user_identity: {
|
|
5972
|
+
description:
|
|
5973
|
+
'Represents 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) associated with an application user account.',
|
|
5946
5974
|
properties: {
|
|
5947
|
-
created_at: {
|
|
5975
|
+
created_at: {
|
|
5976
|
+
description:
|
|
5977
|
+
'Date and time at which the user identity was created.',
|
|
5978
|
+
format: 'date-time',
|
|
5979
|
+
type: 'string',
|
|
5980
|
+
},
|
|
5948
5981
|
display_name: { minLength: 1, type: 'string' },
|
|
5949
|
-
email_address: {
|
|
5982
|
+
email_address: {
|
|
5983
|
+
description: 'Unique email address for the user identity.',
|
|
5984
|
+
format: 'email',
|
|
5985
|
+
nullable: true,
|
|
5986
|
+
type: 'string',
|
|
5987
|
+
},
|
|
5950
5988
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
5951
|
-
phone_number: {
|
|
5952
|
-
|
|
5953
|
-
|
|
5954
|
-
|
|
5989
|
+
phone_number: {
|
|
5990
|
+
description:
|
|
5991
|
+
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
5992
|
+
nullable: true,
|
|
5993
|
+
type: 'string',
|
|
5994
|
+
},
|
|
5995
|
+
user_identity_id: {
|
|
5996
|
+
description: 'ID of the user identity.',
|
|
5997
|
+
format: 'uuid',
|
|
5998
|
+
type: 'string',
|
|
5999
|
+
},
|
|
6000
|
+
user_identity_key: {
|
|
6001
|
+
description: 'Unique key for the user identity.',
|
|
6002
|
+
minLength: 1,
|
|
6003
|
+
nullable: true,
|
|
6004
|
+
type: 'string',
|
|
6005
|
+
},
|
|
6006
|
+
workspace_id: {
|
|
6007
|
+
description:
|
|
6008
|
+
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the user identity.',
|
|
6009
|
+
format: 'uuid',
|
|
6010
|
+
type: 'string',
|
|
6011
|
+
},
|
|
5955
6012
|
},
|
|
5956
6013
|
required: [
|
|
5957
6014
|
'user_identity_id',
|
|
@@ -7241,6 +7298,7 @@ export default {
|
|
|
7241
7298
|
summary: '/access_codes/update_multiple',
|
|
7242
7299
|
tags: ['/access_codes'],
|
|
7243
7300
|
'x-fern-ignore': true,
|
|
7301
|
+
'x-response-key': null,
|
|
7244
7302
|
},
|
|
7245
7303
|
post: {
|
|
7246
7304
|
operationId: 'accessCodesUpdateMultiplePost',
|
|
@@ -7286,6 +7344,7 @@ export default {
|
|
|
7286
7344
|
tags: ['/access_codes'],
|
|
7287
7345
|
'x-fern-sdk-group-name': ['access_codes'],
|
|
7288
7346
|
'x-fern-sdk-method-name': 'update_multiple',
|
|
7347
|
+
'x-response-key': null,
|
|
7289
7348
|
},
|
|
7290
7349
|
},
|
|
7291
7350
|
'/acs/access_groups/add_user': {
|
|
@@ -17542,14 +17601,24 @@ export default {
|
|
|
17542
17601
|
},
|
|
17543
17602
|
'/user_identities/add_acs_user': {
|
|
17544
17603
|
post: {
|
|
17604
|
+
description:
|
|
17605
|
+
'Adds a specified [ACS 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).',
|
|
17545
17606
|
operationId: 'userIdentitiesAddAcsUserPost',
|
|
17546
17607
|
requestBody: {
|
|
17547
17608
|
content: {
|
|
17548
17609
|
'application/json': {
|
|
17549
17610
|
schema: {
|
|
17550
17611
|
properties: {
|
|
17551
|
-
acs_user_id: {
|
|
17552
|
-
|
|
17612
|
+
acs_user_id: {
|
|
17613
|
+
description: 'ID of the desired ACS user.',
|
|
17614
|
+
format: 'uuid',
|
|
17615
|
+
type: 'string',
|
|
17616
|
+
},
|
|
17617
|
+
user_identity_id: {
|
|
17618
|
+
description: 'ID of the desired user identity.',
|
|
17619
|
+
format: 'uuid',
|
|
17620
|
+
type: 'string',
|
|
17621
|
+
},
|
|
17553
17622
|
},
|
|
17554
17623
|
required: ['user_identity_id', 'acs_user_id'],
|
|
17555
17624
|
type: 'object',
|
|
@@ -17583,16 +17652,27 @@ export default {
|
|
|
17583
17652
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
17584
17653
|
'x-fern-sdk-method-name': 'add_acs_user',
|
|
17585
17654
|
'x-response-key': null,
|
|
17655
|
+
'x-title': 'Add an ACS User to a User Identity',
|
|
17586
17656
|
},
|
|
17587
17657
|
put: {
|
|
17658
|
+
description:
|
|
17659
|
+
'Adds a specified [ACS 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).',
|
|
17588
17660
|
operationId: 'userIdentitiesAddAcsUserPut',
|
|
17589
17661
|
requestBody: {
|
|
17590
17662
|
content: {
|
|
17591
17663
|
'application/json': {
|
|
17592
17664
|
schema: {
|
|
17593
17665
|
properties: {
|
|
17594
|
-
acs_user_id: {
|
|
17595
|
-
|
|
17666
|
+
acs_user_id: {
|
|
17667
|
+
description: 'ID of the desired ACS user.',
|
|
17668
|
+
format: 'uuid',
|
|
17669
|
+
type: 'string',
|
|
17670
|
+
},
|
|
17671
|
+
user_identity_id: {
|
|
17672
|
+
description: 'ID of the desired user identity.',
|
|
17673
|
+
format: 'uuid',
|
|
17674
|
+
type: 'string',
|
|
17675
|
+
},
|
|
17596
17676
|
},
|
|
17597
17677
|
required: ['user_identity_id', 'acs_user_id'],
|
|
17598
17678
|
type: 'object',
|
|
@@ -17625,10 +17705,13 @@ export default {
|
|
|
17625
17705
|
tags: ['/user_identities'],
|
|
17626
17706
|
'x-fern-ignore': true,
|
|
17627
17707
|
'x-response-key': null,
|
|
17708
|
+
'x-title': 'Add an ACS User to a User Identity',
|
|
17628
17709
|
},
|
|
17629
17710
|
},
|
|
17630
17711
|
'/user_identities/create': {
|
|
17631
17712
|
post: {
|
|
17713
|
+
description:
|
|
17714
|
+
'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).',
|
|
17632
17715
|
operationId: 'userIdentitiesCreatePost',
|
|
17633
17716
|
requestBody: {
|
|
17634
17717
|
content: {
|
|
@@ -17636,13 +17719,26 @@ export default {
|
|
|
17636
17719
|
schema: {
|
|
17637
17720
|
properties: {
|
|
17638
17721
|
email_address: {
|
|
17722
|
+
description: 'Unique email address for the user identity.',
|
|
17639
17723
|
format: 'email',
|
|
17640
17724
|
nullable: true,
|
|
17641
17725
|
type: 'string',
|
|
17642
17726
|
},
|
|
17643
|
-
full_name: {
|
|
17644
|
-
|
|
17727
|
+
full_name: {
|
|
17728
|
+
description:
|
|
17729
|
+
'Full name of the user associated with the user identity.',
|
|
17730
|
+
minLength: 1,
|
|
17731
|
+
nullable: true,
|
|
17732
|
+
type: 'string',
|
|
17733
|
+
},
|
|
17734
|
+
phone_number: {
|
|
17735
|
+
description:
|
|
17736
|
+
'Unique phone number for the user identity in E.164 format (for example, +15555550100).',
|
|
17737
|
+
nullable: true,
|
|
17738
|
+
type: 'string',
|
|
17739
|
+
},
|
|
17645
17740
|
user_identity_key: {
|
|
17741
|
+
description: 'Unique key for the user identity.',
|
|
17646
17742
|
minLength: 1,
|
|
17647
17743
|
nullable: true,
|
|
17648
17744
|
type: 'string',
|
|
@@ -17685,17 +17781,24 @@ export default {
|
|
|
17685
17781
|
'x-fern-sdk-method-name': 'create',
|
|
17686
17782
|
'x-fern-sdk-return-value': 'user_identity',
|
|
17687
17783
|
'x-response-key': 'user_identity',
|
|
17784
|
+
'x-title': 'Create a User Identity',
|
|
17688
17785
|
},
|
|
17689
17786
|
},
|
|
17690
17787
|
'/user_identities/delete': {
|
|
17691
17788
|
post: {
|
|
17789
|
+
description:
|
|
17790
|
+
'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). To delete a user identity, you must first delete any [ACS credentials](https://docs.seam.co/latest/api/access-control-systems/credentials) and [enrollment automations](https://docs.seam.co/latest/api/user_identities/enrollment_automations/delete) associated with the user identity. You must also deactivate any associated phones.',
|
|
17692
17791
|
operationId: 'userIdentitiesDeletePost',
|
|
17693
17792
|
requestBody: {
|
|
17694
17793
|
content: {
|
|
17695
17794
|
'application/json': {
|
|
17696
17795
|
schema: {
|
|
17697
17796
|
properties: {
|
|
17698
|
-
user_identity_id: {
|
|
17797
|
+
user_identity_id: {
|
|
17798
|
+
description: 'ID of the desired user identity.',
|
|
17799
|
+
format: 'uuid',
|
|
17800
|
+
type: 'string',
|
|
17801
|
+
},
|
|
17699
17802
|
},
|
|
17700
17803
|
required: ['user_identity_id'],
|
|
17701
17804
|
type: 'object',
|
|
@@ -17729,17 +17832,24 @@ export default {
|
|
|
17729
17832
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
17730
17833
|
'x-fern-sdk-method-name': 'delete',
|
|
17731
17834
|
'x-response-key': null,
|
|
17835
|
+
'x-title': 'Delete a User Identity',
|
|
17732
17836
|
},
|
|
17733
17837
|
},
|
|
17734
17838
|
'/user_identities/enrollment_automations/delete': {
|
|
17735
17839
|
post: {
|
|
17840
|
+
description:
|
|
17841
|
+
'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).',
|
|
17736
17842
|
operationId: 'userIdentitiesEnrollmentAutomationsDeletePost',
|
|
17737
17843
|
requestBody: {
|
|
17738
17844
|
content: {
|
|
17739
17845
|
'application/json': {
|
|
17740
17846
|
schema: {
|
|
17741
17847
|
properties: {
|
|
17742
|
-
enrollment_automation_id: {
|
|
17848
|
+
enrollment_automation_id: {
|
|
17849
|
+
description: 'ID of the desired enrollment automation.',
|
|
17850
|
+
format: 'uuid',
|
|
17851
|
+
type: 'string',
|
|
17852
|
+
},
|
|
17743
17853
|
},
|
|
17744
17854
|
required: ['enrollment_automation_id'],
|
|
17745
17855
|
type: 'object',
|
|
@@ -17773,17 +17883,24 @@ export default {
|
|
|
17773
17883
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
17774
17884
|
'x-fern-sdk-method-name': 'delete',
|
|
17775
17885
|
'x-response-key': null,
|
|
17886
|
+
'x-title': 'Delete an Enrollment Automation',
|
|
17776
17887
|
},
|
|
17777
17888
|
},
|
|
17778
17889
|
'/user_identities/enrollment_automations/get': {
|
|
17779
17890
|
post: {
|
|
17891
|
+
description:
|
|
17892
|
+
'Returns a specified [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/issuing-mobile-credentials-from-an-access-control-system).',
|
|
17780
17893
|
operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
|
|
17781
17894
|
requestBody: {
|
|
17782
17895
|
content: {
|
|
17783
17896
|
'application/json': {
|
|
17784
17897
|
schema: {
|
|
17785
17898
|
properties: {
|
|
17786
|
-
enrollment_automation_id: {
|
|
17899
|
+
enrollment_automation_id: {
|
|
17900
|
+
description: 'ID of the desired enrollment automation.',
|
|
17901
|
+
format: 'uuid',
|
|
17902
|
+
type: 'string',
|
|
17903
|
+
},
|
|
17787
17904
|
},
|
|
17788
17905
|
required: ['enrollment_automation_id'],
|
|
17789
17906
|
type: 'object',
|
|
@@ -17824,27 +17941,47 @@ export default {
|
|
|
17824
17941
|
'x-fern-sdk-method-name': 'get',
|
|
17825
17942
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
17826
17943
|
'x-response-key': 'enrollment_automation',
|
|
17944
|
+
'x-title': 'Get an Enrollment Automation',
|
|
17827
17945
|
},
|
|
17828
17946
|
},
|
|
17829
17947
|
'/user_identities/enrollment_automations/launch': {
|
|
17830
17948
|
post: {
|
|
17949
|
+
description:
|
|
17950
|
+
'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).',
|
|
17831
17951
|
operationId: 'userIdentitiesEnrollmentAutomationsLaunchPost',
|
|
17832
17952
|
requestBody: {
|
|
17833
17953
|
content: {
|
|
17834
17954
|
'application/json': {
|
|
17835
17955
|
schema: {
|
|
17836
17956
|
properties: {
|
|
17837
|
-
acs_credential_pool_id: {
|
|
17838
|
-
|
|
17957
|
+
acs_credential_pool_id: {
|
|
17958
|
+
description:
|
|
17959
|
+
'ID of the ACS credential pool from which to obtain credentials for the user identity.',
|
|
17960
|
+
format: 'uuid',
|
|
17961
|
+
type: 'string',
|
|
17962
|
+
},
|
|
17963
|
+
create_credential_manager_user: {
|
|
17964
|
+
description:
|
|
17965
|
+
'Indicates whether to create an associated credential manager user. If you set `create_credential_manager_user` to `true`, you cannot specify a `credential_manager_acs_user_id`.',
|
|
17966
|
+
type: 'boolean',
|
|
17967
|
+
},
|
|
17839
17968
|
credential_manager_acs_system_id: {
|
|
17969
|
+
description:
|
|
17970
|
+
'ID of the desired ACS system that serves as the credential manager.',
|
|
17840
17971
|
format: 'uuid',
|
|
17841
17972
|
type: 'string',
|
|
17842
17973
|
},
|
|
17843
17974
|
credential_manager_acs_user_id: {
|
|
17975
|
+
description:
|
|
17976
|
+
'ID of the associated ACS user within the credential manager. If you specify a `credential_manager_acs_user_id`, you cannot set `create_credential_manager_user` to `true`.',
|
|
17977
|
+
format: 'uuid',
|
|
17978
|
+
type: 'string',
|
|
17979
|
+
},
|
|
17980
|
+
user_identity_id: {
|
|
17981
|
+
description: 'ID of the desired user identity.',
|
|
17844
17982
|
format: 'uuid',
|
|
17845
17983
|
type: 'string',
|
|
17846
17984
|
},
|
|
17847
|
-
user_identity_id: { format: 'uuid', type: 'string' },
|
|
17848
17985
|
},
|
|
17849
17986
|
required: [
|
|
17850
17987
|
'user_identity_id',
|
|
@@ -17912,17 +18049,25 @@ export default {
|
|
|
17912
18049
|
'x-fern-sdk-method-name': 'launch',
|
|
17913
18050
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
17914
18051
|
'x-response-key': 'enrollment_automation',
|
|
18052
|
+
'x-title': 'Launch an Enrollment Automation',
|
|
17915
18053
|
},
|
|
17916
18054
|
},
|
|
17917
18055
|
'/user_identities/enrollment_automations/list': {
|
|
17918
18056
|
post: {
|
|
18057
|
+
description:
|
|
18058
|
+
'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).',
|
|
17919
18059
|
operationId: 'userIdentitiesEnrollmentAutomationsListPost',
|
|
17920
18060
|
requestBody: {
|
|
17921
18061
|
content: {
|
|
17922
18062
|
'application/json': {
|
|
17923
18063
|
schema: {
|
|
17924
18064
|
properties: {
|
|
17925
|
-
user_identity_id: {
|
|
18065
|
+
user_identity_id: {
|
|
18066
|
+
description:
|
|
18067
|
+
'ID of the user identity for which you want to retrieve all enrollment automations.',
|
|
18068
|
+
format: 'uuid',
|
|
18069
|
+
type: 'string',
|
|
18070
|
+
},
|
|
17926
18071
|
},
|
|
17927
18072
|
required: ['user_identity_id'],
|
|
17928
18073
|
type: 'object',
|
|
@@ -17966,10 +18111,13 @@ export default {
|
|
|
17966
18111
|
'x-fern-sdk-method-name': 'list',
|
|
17967
18112
|
'x-fern-sdk-return-value': 'enrollment_automations',
|
|
17968
18113
|
'x-response-key': 'enrollment_automations',
|
|
18114
|
+
'x-title': 'List Enrollment Automations',
|
|
17969
18115
|
},
|
|
17970
18116
|
},
|
|
17971
18117
|
'/user_identities/get': {
|
|
17972
18118
|
post: {
|
|
18119
|
+
description:
|
|
18120
|
+
'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).',
|
|
17973
18121
|
operationId: 'userIdentitiesGetPost',
|
|
17974
18122
|
requestBody: {
|
|
17975
18123
|
content: {
|
|
@@ -17978,7 +18126,11 @@ export default {
|
|
|
17978
18126
|
oneOf: [
|
|
17979
18127
|
{
|
|
17980
18128
|
properties: {
|
|
17981
|
-
user_identity_id: {
|
|
18129
|
+
user_identity_id: {
|
|
18130
|
+
description: 'ID of the desired user identity.',
|
|
18131
|
+
format: 'uuid',
|
|
18132
|
+
type: 'string',
|
|
18133
|
+
},
|
|
17982
18134
|
},
|
|
17983
18135
|
required: ['user_identity_id'],
|
|
17984
18136
|
type: 'object',
|
|
@@ -18025,18 +18177,29 @@ export default {
|
|
|
18025
18177
|
'x-fern-sdk-method-name': 'get',
|
|
18026
18178
|
'x-fern-sdk-return-value': 'user_identity',
|
|
18027
18179
|
'x-response-key': 'user_identity',
|
|
18180
|
+
'x-title': 'Get a User Identity',
|
|
18028
18181
|
},
|
|
18029
18182
|
},
|
|
18030
18183
|
'/user_identities/grant_access_to_device': {
|
|
18031
18184
|
post: {
|
|
18185
|
+
description:
|
|
18186
|
+
'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/).',
|
|
18032
18187
|
operationId: 'userIdentitiesGrantAccessToDevicePost',
|
|
18033
18188
|
requestBody: {
|
|
18034
18189
|
content: {
|
|
18035
18190
|
'application/json': {
|
|
18036
18191
|
schema: {
|
|
18037
18192
|
properties: {
|
|
18038
|
-
device_id: {
|
|
18039
|
-
|
|
18193
|
+
device_id: {
|
|
18194
|
+
description: 'ID of the desired managed device.',
|
|
18195
|
+
format: 'uuid',
|
|
18196
|
+
type: 'string',
|
|
18197
|
+
},
|
|
18198
|
+
user_identity_id: {
|
|
18199
|
+
description: 'ID of the desired user identity.',
|
|
18200
|
+
format: 'uuid',
|
|
18201
|
+
type: 'string',
|
|
18202
|
+
},
|
|
18040
18203
|
},
|
|
18041
18204
|
required: ['user_identity_id', 'device_id'],
|
|
18042
18205
|
type: 'object',
|
|
@@ -18070,16 +18233,27 @@ export default {
|
|
|
18070
18233
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
18071
18234
|
'x-fern-sdk-method-name': 'grant_access_to_device',
|
|
18072
18235
|
'x-response-key': null,
|
|
18236
|
+
'x-title': 'Grant a User Identity Access to a Device',
|
|
18073
18237
|
},
|
|
18074
18238
|
put: {
|
|
18239
|
+
description:
|
|
18240
|
+
'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/).',
|
|
18075
18241
|
operationId: 'userIdentitiesGrantAccessToDevicePut',
|
|
18076
18242
|
requestBody: {
|
|
18077
18243
|
content: {
|
|
18078
18244
|
'application/json': {
|
|
18079
18245
|
schema: {
|
|
18080
18246
|
properties: {
|
|
18081
|
-
device_id: {
|
|
18082
|
-
|
|
18247
|
+
device_id: {
|
|
18248
|
+
description: 'ID of the desired managed device.',
|
|
18249
|
+
format: 'uuid',
|
|
18250
|
+
type: 'string',
|
|
18251
|
+
},
|
|
18252
|
+
user_identity_id: {
|
|
18253
|
+
description: 'ID of the desired user identity.',
|
|
18254
|
+
format: 'uuid',
|
|
18255
|
+
type: 'string',
|
|
18256
|
+
},
|
|
18083
18257
|
},
|
|
18084
18258
|
required: ['user_identity_id', 'device_id'],
|
|
18085
18259
|
type: 'object',
|
|
@@ -18112,10 +18286,13 @@ export default {
|
|
|
18112
18286
|
tags: ['/user_identities'],
|
|
18113
18287
|
'x-fern-ignore': true,
|
|
18114
18288
|
'x-response-key': null,
|
|
18289
|
+
'x-title': 'Grant a User Identity Access to a Device',
|
|
18115
18290
|
},
|
|
18116
18291
|
},
|
|
18117
18292
|
'/user_identities/list': {
|
|
18118
18293
|
post: {
|
|
18294
|
+
description:
|
|
18295
|
+
'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).',
|
|
18119
18296
|
operationId: 'userIdentitiesListPost',
|
|
18120
18297
|
requestBody: {
|
|
18121
18298
|
content: {
|
|
@@ -18166,17 +18343,25 @@ export default {
|
|
|
18166
18343
|
'x-fern-sdk-method-name': 'list',
|
|
18167
18344
|
'x-fern-sdk-return-value': 'user_identities',
|
|
18168
18345
|
'x-response-key': 'user_identities',
|
|
18346
|
+
'x-title': 'List User Identities',
|
|
18169
18347
|
},
|
|
18170
18348
|
},
|
|
18171
18349
|
'/user_identities/list_accessible_devices': {
|
|
18172
18350
|
post: {
|
|
18351
|
+
description:
|
|
18352
|
+
'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).',
|
|
18173
18353
|
operationId: 'userIdentitiesListAccessibleDevicesPost',
|
|
18174
18354
|
requestBody: {
|
|
18175
18355
|
content: {
|
|
18176
18356
|
'application/json': {
|
|
18177
18357
|
schema: {
|
|
18178
18358
|
properties: {
|
|
18179
|
-
user_identity_id: {
|
|
18359
|
+
user_identity_id: {
|
|
18360
|
+
description:
|
|
18361
|
+
'ID of the user identity for which you want to retrieve all accessible devices.',
|
|
18362
|
+
format: 'uuid',
|
|
18363
|
+
type: 'string',
|
|
18364
|
+
},
|
|
18180
18365
|
},
|
|
18181
18366
|
required: ['user_identity_id'],
|
|
18182
18367
|
type: 'object',
|
|
@@ -18223,17 +18408,25 @@ export default {
|
|
|
18223
18408
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
18224
18409
|
'x-fern-sdk-return-value': 'devices',
|
|
18225
18410
|
'x-response-key': 'devices',
|
|
18411
|
+
'x-title': 'List Accessible Devices for a User Identity',
|
|
18226
18412
|
},
|
|
18227
18413
|
},
|
|
18228
18414
|
'/user_identities/list_acs_systems': {
|
|
18229
18415
|
post: {
|
|
18416
|
+
description:
|
|
18417
|
+
'Returns a list of all [access control 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).',
|
|
18230
18418
|
operationId: 'userIdentitiesListAcsSystemsPost',
|
|
18231
18419
|
requestBody: {
|
|
18232
18420
|
content: {
|
|
18233
18421
|
'application/json': {
|
|
18234
18422
|
schema: {
|
|
18235
18423
|
properties: {
|
|
18236
|
-
user_identity_id: {
|
|
18424
|
+
user_identity_id: {
|
|
18425
|
+
description:
|
|
18426
|
+
'ID of the user identity for which you want to retrieve all access control systems.',
|
|
18427
|
+
format: 'uuid',
|
|
18428
|
+
type: 'string',
|
|
18429
|
+
},
|
|
18237
18430
|
},
|
|
18238
18431
|
required: ['user_identity_id'],
|
|
18239
18432
|
type: 'object',
|
|
@@ -18275,17 +18468,25 @@ export default {
|
|
|
18275
18468
|
'x-fern-sdk-method-name': 'list_acs_systems',
|
|
18276
18469
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
18277
18470
|
'x-response-key': 'acs_systems',
|
|
18471
|
+
'x-title': 'List ACS Systems Associated with a User Identity',
|
|
18278
18472
|
},
|
|
18279
18473
|
},
|
|
18280
18474
|
'/user_identities/list_acs_users': {
|
|
18281
18475
|
post: {
|
|
18476
|
+
description:
|
|
18477
|
+
'Returns a list of all [ACS 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).',
|
|
18282
18478
|
operationId: 'userIdentitiesListAcsUsersPost',
|
|
18283
18479
|
requestBody: {
|
|
18284
18480
|
content: {
|
|
18285
18481
|
'application/json': {
|
|
18286
18482
|
schema: {
|
|
18287
18483
|
properties: {
|
|
18288
|
-
user_identity_id: {
|
|
18484
|
+
user_identity_id: {
|
|
18485
|
+
description:
|
|
18486
|
+
'ID of the user identity for which you want to retrieve all ACS users.',
|
|
18487
|
+
format: 'uuid',
|
|
18488
|
+
type: 'string',
|
|
18489
|
+
},
|
|
18289
18490
|
},
|
|
18290
18491
|
required: ['user_identity_id'],
|
|
18291
18492
|
type: 'object',
|
|
@@ -18326,18 +18527,29 @@ export default {
|
|
|
18326
18527
|
'x-fern-sdk-method-name': 'list_acs_users',
|
|
18327
18528
|
'x-fern-sdk-return-value': 'acs_users',
|
|
18328
18529
|
'x-response-key': 'acs_users',
|
|
18530
|
+
'x-title': 'List ACS Users Associated with a User Identity',
|
|
18329
18531
|
},
|
|
18330
18532
|
},
|
|
18331
18533
|
'/user_identities/remove_acs_user': {
|
|
18332
18534
|
post: {
|
|
18535
|
+
description:
|
|
18536
|
+
'Removes a specified [ACS 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).',
|
|
18333
18537
|
operationId: 'userIdentitiesRemoveAcsUserPost',
|
|
18334
18538
|
requestBody: {
|
|
18335
18539
|
content: {
|
|
18336
18540
|
'application/json': {
|
|
18337
18541
|
schema: {
|
|
18338
18542
|
properties: {
|
|
18339
|
-
acs_user_id: {
|
|
18340
|
-
|
|
18543
|
+
acs_user_id: {
|
|
18544
|
+
description: 'ID of the ACS user.',
|
|
18545
|
+
format: 'uuid',
|
|
18546
|
+
type: 'string',
|
|
18547
|
+
},
|
|
18548
|
+
user_identity_id: {
|
|
18549
|
+
description: 'ID of the desired user identity.',
|
|
18550
|
+
format: 'uuid',
|
|
18551
|
+
type: 'string',
|
|
18552
|
+
},
|
|
18341
18553
|
},
|
|
18342
18554
|
required: ['user_identity_id', 'acs_user_id'],
|
|
18343
18555
|
type: 'object',
|
|
@@ -18371,18 +18583,29 @@ export default {
|
|
|
18371
18583
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
18372
18584
|
'x-fern-sdk-method-name': 'remove_acs_user',
|
|
18373
18585
|
'x-response-key': null,
|
|
18586
|
+
'x-title': 'Remove an ACS User from a User Identity',
|
|
18374
18587
|
},
|
|
18375
18588
|
},
|
|
18376
18589
|
'/user_identities/revoke_access_to_device': {
|
|
18377
18590
|
post: {
|
|
18591
|
+
description:
|
|
18592
|
+
'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).',
|
|
18378
18593
|
operationId: 'userIdentitiesRevokeAccessToDevicePost',
|
|
18379
18594
|
requestBody: {
|
|
18380
18595
|
content: {
|
|
18381
18596
|
'application/json': {
|
|
18382
18597
|
schema: {
|
|
18383
18598
|
properties: {
|
|
18384
|
-
device_id: {
|
|
18385
|
-
|
|
18599
|
+
device_id: {
|
|
18600
|
+
description: 'ID of the desired managed device.',
|
|
18601
|
+
format: 'uuid',
|
|
18602
|
+
type: 'string',
|
|
18603
|
+
},
|
|
18604
|
+
user_identity_id: {
|
|
18605
|
+
description: 'ID of the desired user identity.',
|
|
18606
|
+
format: 'uuid',
|
|
18607
|
+
type: 'string',
|
|
18608
|
+
},
|
|
18386
18609
|
},
|
|
18387
18610
|
required: ['user_identity_id', 'device_id'],
|
|
18388
18611
|
type: 'object',
|
|
@@ -18416,6 +18639,7 @@ export default {
|
|
|
18416
18639
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
18417
18640
|
'x-fern-sdk-method-name': 'revoke_access_to_device',
|
|
18418
18641
|
'x-response-key': null,
|
|
18642
|
+
'x-title': 'Revoke Access to a Device from a User Identity',
|
|
18419
18643
|
},
|
|
18420
18644
|
},
|
|
18421
18645
|
'/user_identities/update': {
|
|
@@ -18427,14 +18651,25 @@ export default {
|
|
|
18427
18651
|
schema: {
|
|
18428
18652
|
properties: {
|
|
18429
18653
|
email_address: {
|
|
18654
|
+
description: 'Unique email address for the user identity.',
|
|
18430
18655
|
format: 'email',
|
|
18431
18656
|
nullable: true,
|
|
18432
18657
|
type: 'string',
|
|
18433
18658
|
},
|
|
18434
18659
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
18435
|
-
phone_number: {
|
|
18436
|
-
|
|
18660
|
+
phone_number: {
|
|
18661
|
+
description:
|
|
18662
|
+
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
18663
|
+
nullable: true,
|
|
18664
|
+
type: 'string',
|
|
18665
|
+
},
|
|
18666
|
+
user_identity_id: {
|
|
18667
|
+
description: 'ID of the user identity.',
|
|
18668
|
+
format: 'uuid',
|
|
18669
|
+
type: 'string',
|
|
18670
|
+
},
|
|
18437
18671
|
user_identity_key: {
|
|
18672
|
+
description: 'Unique key for the user identity.',
|
|
18438
18673
|
minLength: 1,
|
|
18439
18674
|
nullable: true,
|
|
18440
18675
|
type: 'string',
|
|
@@ -18480,14 +18715,25 @@ export default {
|
|
|
18480
18715
|
schema: {
|
|
18481
18716
|
properties: {
|
|
18482
18717
|
email_address: {
|
|
18718
|
+
description: 'Unique email address for the user identity.',
|
|
18483
18719
|
format: 'email',
|
|
18484
18720
|
nullable: true,
|
|
18485
18721
|
type: 'string',
|
|
18486
18722
|
},
|
|
18487
18723
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
18488
|
-
phone_number: {
|
|
18489
|
-
|
|
18724
|
+
phone_number: {
|
|
18725
|
+
description:
|
|
18726
|
+
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
18727
|
+
nullable: true,
|
|
18728
|
+
type: 'string',
|
|
18729
|
+
},
|
|
18730
|
+
user_identity_id: {
|
|
18731
|
+
description: 'ID of the user identity.',
|
|
18732
|
+
format: 'uuid',
|
|
18733
|
+
type: 'string',
|
|
18734
|
+
},
|
|
18490
18735
|
user_identity_key: {
|
|
18736
|
+
description: 'Unique key for the user identity.',
|
|
18491
18737
|
minLength: 1,
|
|
18492
18738
|
nullable: true,
|
|
18493
18739
|
type: 'string',
|