@seamapi/types 1.293.1 → 1.294.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.
- package/dist/connect.cjs +278 -66
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +146 -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 +84 -0
- package/lib/seam/connect/openapi.js +247 -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 +285 -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',
|
|
@@ -17542,14 +17599,24 @@ export default {
|
|
|
17542
17599
|
},
|
|
17543
17600
|
'/user_identities/add_acs_user': {
|
|
17544
17601
|
post: {
|
|
17602
|
+
description:
|
|
17603
|
+
'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
17604
|
operationId: 'userIdentitiesAddAcsUserPost',
|
|
17546
17605
|
requestBody: {
|
|
17547
17606
|
content: {
|
|
17548
17607
|
'application/json': {
|
|
17549
17608
|
schema: {
|
|
17550
17609
|
properties: {
|
|
17551
|
-
acs_user_id: {
|
|
17552
|
-
|
|
17610
|
+
acs_user_id: {
|
|
17611
|
+
description: 'ID of the desired ACS user.',
|
|
17612
|
+
format: 'uuid',
|
|
17613
|
+
type: 'string',
|
|
17614
|
+
},
|
|
17615
|
+
user_identity_id: {
|
|
17616
|
+
description: 'ID of the desired user identity.',
|
|
17617
|
+
format: 'uuid',
|
|
17618
|
+
type: 'string',
|
|
17619
|
+
},
|
|
17553
17620
|
},
|
|
17554
17621
|
required: ['user_identity_id', 'acs_user_id'],
|
|
17555
17622
|
type: 'object',
|
|
@@ -17583,16 +17650,27 @@ export default {
|
|
|
17583
17650
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
17584
17651
|
'x-fern-sdk-method-name': 'add_acs_user',
|
|
17585
17652
|
'x-response-key': null,
|
|
17653
|
+
'x-title': 'Add an ACS User to a User Identity',
|
|
17586
17654
|
},
|
|
17587
17655
|
put: {
|
|
17656
|
+
description:
|
|
17657
|
+
'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
17658
|
operationId: 'userIdentitiesAddAcsUserPut',
|
|
17589
17659
|
requestBody: {
|
|
17590
17660
|
content: {
|
|
17591
17661
|
'application/json': {
|
|
17592
17662
|
schema: {
|
|
17593
17663
|
properties: {
|
|
17594
|
-
acs_user_id: {
|
|
17595
|
-
|
|
17664
|
+
acs_user_id: {
|
|
17665
|
+
description: 'ID of the desired ACS user.',
|
|
17666
|
+
format: 'uuid',
|
|
17667
|
+
type: 'string',
|
|
17668
|
+
},
|
|
17669
|
+
user_identity_id: {
|
|
17670
|
+
description: 'ID of the desired user identity.',
|
|
17671
|
+
format: 'uuid',
|
|
17672
|
+
type: 'string',
|
|
17673
|
+
},
|
|
17596
17674
|
},
|
|
17597
17675
|
required: ['user_identity_id', 'acs_user_id'],
|
|
17598
17676
|
type: 'object',
|
|
@@ -17625,10 +17703,13 @@ export default {
|
|
|
17625
17703
|
tags: ['/user_identities'],
|
|
17626
17704
|
'x-fern-ignore': true,
|
|
17627
17705
|
'x-response-key': null,
|
|
17706
|
+
'x-title': 'Add an ACS User to a User Identity',
|
|
17628
17707
|
},
|
|
17629
17708
|
},
|
|
17630
17709
|
'/user_identities/create': {
|
|
17631
17710
|
post: {
|
|
17711
|
+
description:
|
|
17712
|
+
'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
17713
|
operationId: 'userIdentitiesCreatePost',
|
|
17633
17714
|
requestBody: {
|
|
17634
17715
|
content: {
|
|
@@ -17636,13 +17717,26 @@ export default {
|
|
|
17636
17717
|
schema: {
|
|
17637
17718
|
properties: {
|
|
17638
17719
|
email_address: {
|
|
17720
|
+
description: 'Unique email address for the user identity.',
|
|
17639
17721
|
format: 'email',
|
|
17640
17722
|
nullable: true,
|
|
17641
17723
|
type: 'string',
|
|
17642
17724
|
},
|
|
17643
|
-
full_name: {
|
|
17644
|
-
|
|
17725
|
+
full_name: {
|
|
17726
|
+
description:
|
|
17727
|
+
'Full name of the user associated with the user identity.',
|
|
17728
|
+
minLength: 1,
|
|
17729
|
+
nullable: true,
|
|
17730
|
+
type: 'string',
|
|
17731
|
+
},
|
|
17732
|
+
phone_number: {
|
|
17733
|
+
description:
|
|
17734
|
+
'Unique phone number for the user identity in E.164 format (for example, +15555550100).',
|
|
17735
|
+
nullable: true,
|
|
17736
|
+
type: 'string',
|
|
17737
|
+
},
|
|
17645
17738
|
user_identity_key: {
|
|
17739
|
+
description: 'Unique key for the user identity.',
|
|
17646
17740
|
minLength: 1,
|
|
17647
17741
|
nullable: true,
|
|
17648
17742
|
type: 'string',
|
|
@@ -17685,17 +17779,24 @@ export default {
|
|
|
17685
17779
|
'x-fern-sdk-method-name': 'create',
|
|
17686
17780
|
'x-fern-sdk-return-value': 'user_identity',
|
|
17687
17781
|
'x-response-key': 'user_identity',
|
|
17782
|
+
'x-title': 'Create a User Identity',
|
|
17688
17783
|
},
|
|
17689
17784
|
},
|
|
17690
17785
|
'/user_identities/delete': {
|
|
17691
17786
|
post: {
|
|
17787
|
+
description:
|
|
17788
|
+
'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
17789
|
operationId: 'userIdentitiesDeletePost',
|
|
17693
17790
|
requestBody: {
|
|
17694
17791
|
content: {
|
|
17695
17792
|
'application/json': {
|
|
17696
17793
|
schema: {
|
|
17697
17794
|
properties: {
|
|
17698
|
-
user_identity_id: {
|
|
17795
|
+
user_identity_id: {
|
|
17796
|
+
description: 'ID of the desired user identity.',
|
|
17797
|
+
format: 'uuid',
|
|
17798
|
+
type: 'string',
|
|
17799
|
+
},
|
|
17699
17800
|
},
|
|
17700
17801
|
required: ['user_identity_id'],
|
|
17701
17802
|
type: 'object',
|
|
@@ -17729,17 +17830,24 @@ export default {
|
|
|
17729
17830
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
17730
17831
|
'x-fern-sdk-method-name': 'delete',
|
|
17731
17832
|
'x-response-key': null,
|
|
17833
|
+
'x-title': 'Delete a User Identity',
|
|
17732
17834
|
},
|
|
17733
17835
|
},
|
|
17734
17836
|
'/user_identities/enrollment_automations/delete': {
|
|
17735
17837
|
post: {
|
|
17838
|
+
description:
|
|
17839
|
+
'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
17840
|
operationId: 'userIdentitiesEnrollmentAutomationsDeletePost',
|
|
17737
17841
|
requestBody: {
|
|
17738
17842
|
content: {
|
|
17739
17843
|
'application/json': {
|
|
17740
17844
|
schema: {
|
|
17741
17845
|
properties: {
|
|
17742
|
-
enrollment_automation_id: {
|
|
17846
|
+
enrollment_automation_id: {
|
|
17847
|
+
description: 'ID of the desired enrollment automation.',
|
|
17848
|
+
format: 'uuid',
|
|
17849
|
+
type: 'string',
|
|
17850
|
+
},
|
|
17743
17851
|
},
|
|
17744
17852
|
required: ['enrollment_automation_id'],
|
|
17745
17853
|
type: 'object',
|
|
@@ -17773,17 +17881,24 @@ export default {
|
|
|
17773
17881
|
'x-fern-sdk-group-name': ['user_identities', 'enrollment_automations'],
|
|
17774
17882
|
'x-fern-sdk-method-name': 'delete',
|
|
17775
17883
|
'x-response-key': null,
|
|
17884
|
+
'x-title': 'Delete an Enrollment Automation',
|
|
17776
17885
|
},
|
|
17777
17886
|
},
|
|
17778
17887
|
'/user_identities/enrollment_automations/get': {
|
|
17779
17888
|
post: {
|
|
17889
|
+
description:
|
|
17890
|
+
'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
17891
|
operationId: 'userIdentitiesEnrollmentAutomationsGetPost',
|
|
17781
17892
|
requestBody: {
|
|
17782
17893
|
content: {
|
|
17783
17894
|
'application/json': {
|
|
17784
17895
|
schema: {
|
|
17785
17896
|
properties: {
|
|
17786
|
-
enrollment_automation_id: {
|
|
17897
|
+
enrollment_automation_id: {
|
|
17898
|
+
description: 'ID of the desired enrollment automation.',
|
|
17899
|
+
format: 'uuid',
|
|
17900
|
+
type: 'string',
|
|
17901
|
+
},
|
|
17787
17902
|
},
|
|
17788
17903
|
required: ['enrollment_automation_id'],
|
|
17789
17904
|
type: 'object',
|
|
@@ -17824,27 +17939,47 @@ export default {
|
|
|
17824
17939
|
'x-fern-sdk-method-name': 'get',
|
|
17825
17940
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
17826
17941
|
'x-response-key': 'enrollment_automation',
|
|
17942
|
+
'x-title': 'Get an Enrollment Automation',
|
|
17827
17943
|
},
|
|
17828
17944
|
},
|
|
17829
17945
|
'/user_identities/enrollment_automations/launch': {
|
|
17830
17946
|
post: {
|
|
17947
|
+
description:
|
|
17948
|
+
'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
17949
|
operationId: 'userIdentitiesEnrollmentAutomationsLaunchPost',
|
|
17832
17950
|
requestBody: {
|
|
17833
17951
|
content: {
|
|
17834
17952
|
'application/json': {
|
|
17835
17953
|
schema: {
|
|
17836
17954
|
properties: {
|
|
17837
|
-
acs_credential_pool_id: {
|
|
17838
|
-
|
|
17955
|
+
acs_credential_pool_id: {
|
|
17956
|
+
description:
|
|
17957
|
+
'ID of the ACS credential pool from which to obtain credentials for the user identity.',
|
|
17958
|
+
format: 'uuid',
|
|
17959
|
+
type: 'string',
|
|
17960
|
+
},
|
|
17961
|
+
create_credential_manager_user: {
|
|
17962
|
+
description:
|
|
17963
|
+
'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`.',
|
|
17964
|
+
type: 'boolean',
|
|
17965
|
+
},
|
|
17839
17966
|
credential_manager_acs_system_id: {
|
|
17967
|
+
description:
|
|
17968
|
+
'ID of the desired ACS system that serves as the credential manager.',
|
|
17840
17969
|
format: 'uuid',
|
|
17841
17970
|
type: 'string',
|
|
17842
17971
|
},
|
|
17843
17972
|
credential_manager_acs_user_id: {
|
|
17973
|
+
description:
|
|
17974
|
+
'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`.',
|
|
17975
|
+
format: 'uuid',
|
|
17976
|
+
type: 'string',
|
|
17977
|
+
},
|
|
17978
|
+
user_identity_id: {
|
|
17979
|
+
description: 'ID of the desired user identity.',
|
|
17844
17980
|
format: 'uuid',
|
|
17845
17981
|
type: 'string',
|
|
17846
17982
|
},
|
|
17847
|
-
user_identity_id: { format: 'uuid', type: 'string' },
|
|
17848
17983
|
},
|
|
17849
17984
|
required: [
|
|
17850
17985
|
'user_identity_id',
|
|
@@ -17912,17 +18047,25 @@ export default {
|
|
|
17912
18047
|
'x-fern-sdk-method-name': 'launch',
|
|
17913
18048
|
'x-fern-sdk-return-value': 'enrollment_automation',
|
|
17914
18049
|
'x-response-key': 'enrollment_automation',
|
|
18050
|
+
'x-title': 'Launch an Enrollment Automation',
|
|
17915
18051
|
},
|
|
17916
18052
|
},
|
|
17917
18053
|
'/user_identities/enrollment_automations/list': {
|
|
17918
18054
|
post: {
|
|
18055
|
+
description:
|
|
18056
|
+
'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
18057
|
operationId: 'userIdentitiesEnrollmentAutomationsListPost',
|
|
17920
18058
|
requestBody: {
|
|
17921
18059
|
content: {
|
|
17922
18060
|
'application/json': {
|
|
17923
18061
|
schema: {
|
|
17924
18062
|
properties: {
|
|
17925
|
-
user_identity_id: {
|
|
18063
|
+
user_identity_id: {
|
|
18064
|
+
description:
|
|
18065
|
+
'ID of the user identity for which you want to retrieve all enrollment automations.',
|
|
18066
|
+
format: 'uuid',
|
|
18067
|
+
type: 'string',
|
|
18068
|
+
},
|
|
17926
18069
|
},
|
|
17927
18070
|
required: ['user_identity_id'],
|
|
17928
18071
|
type: 'object',
|
|
@@ -17966,10 +18109,13 @@ export default {
|
|
|
17966
18109
|
'x-fern-sdk-method-name': 'list',
|
|
17967
18110
|
'x-fern-sdk-return-value': 'enrollment_automations',
|
|
17968
18111
|
'x-response-key': 'enrollment_automations',
|
|
18112
|
+
'x-title': 'List Enrollment Automations',
|
|
17969
18113
|
},
|
|
17970
18114
|
},
|
|
17971
18115
|
'/user_identities/get': {
|
|
17972
18116
|
post: {
|
|
18117
|
+
description:
|
|
18118
|
+
'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
18119
|
operationId: 'userIdentitiesGetPost',
|
|
17974
18120
|
requestBody: {
|
|
17975
18121
|
content: {
|
|
@@ -17978,7 +18124,11 @@ export default {
|
|
|
17978
18124
|
oneOf: [
|
|
17979
18125
|
{
|
|
17980
18126
|
properties: {
|
|
17981
|
-
user_identity_id: {
|
|
18127
|
+
user_identity_id: {
|
|
18128
|
+
description: 'ID of the desired user identity.',
|
|
18129
|
+
format: 'uuid',
|
|
18130
|
+
type: 'string',
|
|
18131
|
+
},
|
|
17982
18132
|
},
|
|
17983
18133
|
required: ['user_identity_id'],
|
|
17984
18134
|
type: 'object',
|
|
@@ -18025,18 +18175,29 @@ export default {
|
|
|
18025
18175
|
'x-fern-sdk-method-name': 'get',
|
|
18026
18176
|
'x-fern-sdk-return-value': 'user_identity',
|
|
18027
18177
|
'x-response-key': 'user_identity',
|
|
18178
|
+
'x-title': 'Get a User Identity',
|
|
18028
18179
|
},
|
|
18029
18180
|
},
|
|
18030
18181
|
'/user_identities/grant_access_to_device': {
|
|
18031
18182
|
post: {
|
|
18183
|
+
description:
|
|
18184
|
+
'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
18185
|
operationId: 'userIdentitiesGrantAccessToDevicePost',
|
|
18033
18186
|
requestBody: {
|
|
18034
18187
|
content: {
|
|
18035
18188
|
'application/json': {
|
|
18036
18189
|
schema: {
|
|
18037
18190
|
properties: {
|
|
18038
|
-
device_id: {
|
|
18039
|
-
|
|
18191
|
+
device_id: {
|
|
18192
|
+
description: 'ID of the desired managed device.',
|
|
18193
|
+
format: 'uuid',
|
|
18194
|
+
type: 'string',
|
|
18195
|
+
},
|
|
18196
|
+
user_identity_id: {
|
|
18197
|
+
description: 'ID of the desired user identity.',
|
|
18198
|
+
format: 'uuid',
|
|
18199
|
+
type: 'string',
|
|
18200
|
+
},
|
|
18040
18201
|
},
|
|
18041
18202
|
required: ['user_identity_id', 'device_id'],
|
|
18042
18203
|
type: 'object',
|
|
@@ -18070,16 +18231,27 @@ export default {
|
|
|
18070
18231
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
18071
18232
|
'x-fern-sdk-method-name': 'grant_access_to_device',
|
|
18072
18233
|
'x-response-key': null,
|
|
18234
|
+
'x-title': 'Grant a User Identity Access to a Device',
|
|
18073
18235
|
},
|
|
18074
18236
|
put: {
|
|
18237
|
+
description:
|
|
18238
|
+
'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
18239
|
operationId: 'userIdentitiesGrantAccessToDevicePut',
|
|
18076
18240
|
requestBody: {
|
|
18077
18241
|
content: {
|
|
18078
18242
|
'application/json': {
|
|
18079
18243
|
schema: {
|
|
18080
18244
|
properties: {
|
|
18081
|
-
device_id: {
|
|
18082
|
-
|
|
18245
|
+
device_id: {
|
|
18246
|
+
description: 'ID of the desired managed device.',
|
|
18247
|
+
format: 'uuid',
|
|
18248
|
+
type: 'string',
|
|
18249
|
+
},
|
|
18250
|
+
user_identity_id: {
|
|
18251
|
+
description: 'ID of the desired user identity.',
|
|
18252
|
+
format: 'uuid',
|
|
18253
|
+
type: 'string',
|
|
18254
|
+
},
|
|
18083
18255
|
},
|
|
18084
18256
|
required: ['user_identity_id', 'device_id'],
|
|
18085
18257
|
type: 'object',
|
|
@@ -18112,10 +18284,13 @@ export default {
|
|
|
18112
18284
|
tags: ['/user_identities'],
|
|
18113
18285
|
'x-fern-ignore': true,
|
|
18114
18286
|
'x-response-key': null,
|
|
18287
|
+
'x-title': 'Grant a User Identity Access to a Device',
|
|
18115
18288
|
},
|
|
18116
18289
|
},
|
|
18117
18290
|
'/user_identities/list': {
|
|
18118
18291
|
post: {
|
|
18292
|
+
description:
|
|
18293
|
+
'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
18294
|
operationId: 'userIdentitiesListPost',
|
|
18120
18295
|
requestBody: {
|
|
18121
18296
|
content: {
|
|
@@ -18166,17 +18341,25 @@ export default {
|
|
|
18166
18341
|
'x-fern-sdk-method-name': 'list',
|
|
18167
18342
|
'x-fern-sdk-return-value': 'user_identities',
|
|
18168
18343
|
'x-response-key': 'user_identities',
|
|
18344
|
+
'x-title': 'List User Identities',
|
|
18169
18345
|
},
|
|
18170
18346
|
},
|
|
18171
18347
|
'/user_identities/list_accessible_devices': {
|
|
18172
18348
|
post: {
|
|
18349
|
+
description:
|
|
18350
|
+
'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
18351
|
operationId: 'userIdentitiesListAccessibleDevicesPost',
|
|
18174
18352
|
requestBody: {
|
|
18175
18353
|
content: {
|
|
18176
18354
|
'application/json': {
|
|
18177
18355
|
schema: {
|
|
18178
18356
|
properties: {
|
|
18179
|
-
user_identity_id: {
|
|
18357
|
+
user_identity_id: {
|
|
18358
|
+
description:
|
|
18359
|
+
'ID of the user identity for which you want to retrieve all accessible devices.',
|
|
18360
|
+
format: 'uuid',
|
|
18361
|
+
type: 'string',
|
|
18362
|
+
},
|
|
18180
18363
|
},
|
|
18181
18364
|
required: ['user_identity_id'],
|
|
18182
18365
|
type: 'object',
|
|
@@ -18223,17 +18406,25 @@ export default {
|
|
|
18223
18406
|
'x-fern-sdk-method-name': 'list_accessible_devices',
|
|
18224
18407
|
'x-fern-sdk-return-value': 'devices',
|
|
18225
18408
|
'x-response-key': 'devices',
|
|
18409
|
+
'x-title': 'List Accessible Devices for a User Identity',
|
|
18226
18410
|
},
|
|
18227
18411
|
},
|
|
18228
18412
|
'/user_identities/list_acs_systems': {
|
|
18229
18413
|
post: {
|
|
18414
|
+
description:
|
|
18415
|
+
'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
18416
|
operationId: 'userIdentitiesListAcsSystemsPost',
|
|
18231
18417
|
requestBody: {
|
|
18232
18418
|
content: {
|
|
18233
18419
|
'application/json': {
|
|
18234
18420
|
schema: {
|
|
18235
18421
|
properties: {
|
|
18236
|
-
user_identity_id: {
|
|
18422
|
+
user_identity_id: {
|
|
18423
|
+
description:
|
|
18424
|
+
'ID of the user identity for which you want to retrieve all access control systems.',
|
|
18425
|
+
format: 'uuid',
|
|
18426
|
+
type: 'string',
|
|
18427
|
+
},
|
|
18237
18428
|
},
|
|
18238
18429
|
required: ['user_identity_id'],
|
|
18239
18430
|
type: 'object',
|
|
@@ -18275,17 +18466,25 @@ export default {
|
|
|
18275
18466
|
'x-fern-sdk-method-name': 'list_acs_systems',
|
|
18276
18467
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
18277
18468
|
'x-response-key': 'acs_systems',
|
|
18469
|
+
'x-title': 'List ACS Systems Associated with a User Identity',
|
|
18278
18470
|
},
|
|
18279
18471
|
},
|
|
18280
18472
|
'/user_identities/list_acs_users': {
|
|
18281
18473
|
post: {
|
|
18474
|
+
description:
|
|
18475
|
+
'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
18476
|
operationId: 'userIdentitiesListAcsUsersPost',
|
|
18283
18477
|
requestBody: {
|
|
18284
18478
|
content: {
|
|
18285
18479
|
'application/json': {
|
|
18286
18480
|
schema: {
|
|
18287
18481
|
properties: {
|
|
18288
|
-
user_identity_id: {
|
|
18482
|
+
user_identity_id: {
|
|
18483
|
+
description:
|
|
18484
|
+
'ID of the user identity for which you want to retrieve all ACS users.',
|
|
18485
|
+
format: 'uuid',
|
|
18486
|
+
type: 'string',
|
|
18487
|
+
},
|
|
18289
18488
|
},
|
|
18290
18489
|
required: ['user_identity_id'],
|
|
18291
18490
|
type: 'object',
|
|
@@ -18326,18 +18525,29 @@ export default {
|
|
|
18326
18525
|
'x-fern-sdk-method-name': 'list_acs_users',
|
|
18327
18526
|
'x-fern-sdk-return-value': 'acs_users',
|
|
18328
18527
|
'x-response-key': 'acs_users',
|
|
18528
|
+
'x-title': 'List ACS Users Associated with a User Identity',
|
|
18329
18529
|
},
|
|
18330
18530
|
},
|
|
18331
18531
|
'/user_identities/remove_acs_user': {
|
|
18332
18532
|
post: {
|
|
18533
|
+
description:
|
|
18534
|
+
'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
18535
|
operationId: 'userIdentitiesRemoveAcsUserPost',
|
|
18334
18536
|
requestBody: {
|
|
18335
18537
|
content: {
|
|
18336
18538
|
'application/json': {
|
|
18337
18539
|
schema: {
|
|
18338
18540
|
properties: {
|
|
18339
|
-
acs_user_id: {
|
|
18340
|
-
|
|
18541
|
+
acs_user_id: {
|
|
18542
|
+
description: 'ID of the ACS user.',
|
|
18543
|
+
format: 'uuid',
|
|
18544
|
+
type: 'string',
|
|
18545
|
+
},
|
|
18546
|
+
user_identity_id: {
|
|
18547
|
+
description: 'ID of the desired user identity.',
|
|
18548
|
+
format: 'uuid',
|
|
18549
|
+
type: 'string',
|
|
18550
|
+
},
|
|
18341
18551
|
},
|
|
18342
18552
|
required: ['user_identity_id', 'acs_user_id'],
|
|
18343
18553
|
type: 'object',
|
|
@@ -18371,18 +18581,29 @@ export default {
|
|
|
18371
18581
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
18372
18582
|
'x-fern-sdk-method-name': 'remove_acs_user',
|
|
18373
18583
|
'x-response-key': null,
|
|
18584
|
+
'x-title': 'Remove an ACS User from a User Identity',
|
|
18374
18585
|
},
|
|
18375
18586
|
},
|
|
18376
18587
|
'/user_identities/revoke_access_to_device': {
|
|
18377
18588
|
post: {
|
|
18589
|
+
description:
|
|
18590
|
+
'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
18591
|
operationId: 'userIdentitiesRevokeAccessToDevicePost',
|
|
18379
18592
|
requestBody: {
|
|
18380
18593
|
content: {
|
|
18381
18594
|
'application/json': {
|
|
18382
18595
|
schema: {
|
|
18383
18596
|
properties: {
|
|
18384
|
-
device_id: {
|
|
18385
|
-
|
|
18597
|
+
device_id: {
|
|
18598
|
+
description: 'ID of the desired managed device.',
|
|
18599
|
+
format: 'uuid',
|
|
18600
|
+
type: 'string',
|
|
18601
|
+
},
|
|
18602
|
+
user_identity_id: {
|
|
18603
|
+
description: 'ID of the desired user identity.',
|
|
18604
|
+
format: 'uuid',
|
|
18605
|
+
type: 'string',
|
|
18606
|
+
},
|
|
18386
18607
|
},
|
|
18387
18608
|
required: ['user_identity_id', 'device_id'],
|
|
18388
18609
|
type: 'object',
|
|
@@ -18416,6 +18637,7 @@ export default {
|
|
|
18416
18637
|
'x-fern-sdk-group-name': ['user_identities'],
|
|
18417
18638
|
'x-fern-sdk-method-name': 'revoke_access_to_device',
|
|
18418
18639
|
'x-response-key': null,
|
|
18640
|
+
'x-title': 'Revoke Access to a Device from a User Identity',
|
|
18419
18641
|
},
|
|
18420
18642
|
},
|
|
18421
18643
|
'/user_identities/update': {
|
|
@@ -18427,14 +18649,25 @@ export default {
|
|
|
18427
18649
|
schema: {
|
|
18428
18650
|
properties: {
|
|
18429
18651
|
email_address: {
|
|
18652
|
+
description: 'Unique email address for the user identity.',
|
|
18430
18653
|
format: 'email',
|
|
18431
18654
|
nullable: true,
|
|
18432
18655
|
type: 'string',
|
|
18433
18656
|
},
|
|
18434
18657
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
18435
|
-
phone_number: {
|
|
18436
|
-
|
|
18658
|
+
phone_number: {
|
|
18659
|
+
description:
|
|
18660
|
+
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
18661
|
+
nullable: true,
|
|
18662
|
+
type: 'string',
|
|
18663
|
+
},
|
|
18664
|
+
user_identity_id: {
|
|
18665
|
+
description: 'ID of the user identity.',
|
|
18666
|
+
format: 'uuid',
|
|
18667
|
+
type: 'string',
|
|
18668
|
+
},
|
|
18437
18669
|
user_identity_key: {
|
|
18670
|
+
description: 'Unique key for the user identity.',
|
|
18438
18671
|
minLength: 1,
|
|
18439
18672
|
nullable: true,
|
|
18440
18673
|
type: 'string',
|
|
@@ -18480,14 +18713,25 @@ export default {
|
|
|
18480
18713
|
schema: {
|
|
18481
18714
|
properties: {
|
|
18482
18715
|
email_address: {
|
|
18716
|
+
description: 'Unique email address for the user identity.',
|
|
18483
18717
|
format: 'email',
|
|
18484
18718
|
nullable: true,
|
|
18485
18719
|
type: 'string',
|
|
18486
18720
|
},
|
|
18487
18721
|
full_name: { minLength: 1, nullable: true, type: 'string' },
|
|
18488
|
-
phone_number: {
|
|
18489
|
-
|
|
18722
|
+
phone_number: {
|
|
18723
|
+
description:
|
|
18724
|
+
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
18725
|
+
nullable: true,
|
|
18726
|
+
type: 'string',
|
|
18727
|
+
},
|
|
18728
|
+
user_identity_id: {
|
|
18729
|
+
description: 'ID of the user identity.',
|
|
18730
|
+
format: 'uuid',
|
|
18731
|
+
type: 'string',
|
|
18732
|
+
},
|
|
18490
18733
|
user_identity_key: {
|
|
18734
|
+
description: 'Unique key for the user identity.',
|
|
18491
18735
|
minLength: 1,
|
|
18492
18736
|
nullable: true,
|
|
18493
18737
|
type: 'string',
|