File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -56509,8 +56509,13 @@ export default {
56509
56509
format: 'uuid',
56510
56510
type: 'string',
56511
56511
},
56512
+ user_identity_key: {
56513
+ description:
56514
+ 'Key of the user identity to which you want to add an access system user.',
56515
+ type: 'string',
56516
+ },
56512
56517
},
56513
- required: ['user_identity_id', ' acs_user_id'],
56518
+ required: ['acs_user_id'],
56514
56519
type: 'object',
56515
56520
},
56516
56521
},
@@ -56565,8 +56570,13 @@ export default {
56565
56570
format: 'uuid',
56566
56571
type: 'string',
56567
56572
},
56573
+ user_identity_key: {
56574
+ description:
56575
+ 'Key of the user identity to which you want to add an access system user.',
56576
+ type: 'string',
56577
+ },
56568
56578
},
56569
- required: ['user_identity_id', ' acs_user_id'],
56579
+ required: ['acs_user_id'],
56570
56580
type: 'object',
56571
56581
},
56572
56582
},
Original file line number Diff line number Diff line change @@ -90854,7 +90854,9 @@ export type Routes = {
90854
90854
jsonBody: {}
90855
90855
commonParams: {
90856
90856
/** ID of the user identity to which you want to add an access system user. */
90857
- user_identity_id: string
90857
+ user_identity_id?: string | undefined
90858
+ /** Key of the user identity to which you want to add an access system user. */
90859
+ user_identity_key?: string | undefined
90858
90860
/** ID of the access system user that you want to add to the user identity. */
90859
90861
acs_user_id: string
90860
90862
}
You can’t perform that action at this time.
0 commit comments