No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Activate
Add
Deactivate
Retrieve
Update
渡されたパラメーターに基づいて、新しいアカウントユーザーを作成します。
Add(1)
序数 | 型 | 説明 | |
---|---|---|---|
1 | object | 必須 | 新しいアカウントユーザーのプロパティを表す JSON オブジェクト |
このサンプルコードは、新しいアカウントユーザーを追加し、提供された外部キーに基づいてユーザーのデフォルトのビジネスユニットおよび関連付けられたビジネスユニットを指定します。
var newUser = {
"Name" : "Andrea Cruz",
"UserID" : "acruz",
"Password" : "PASSWORD",
"Email" : "acruz@example.com",
"ClientID" : 123456789,
"DefaultBusinessUnitKey": "childBUKey",
"AssociatedBusinessUnits" : ["childBUKey", "grandchildBUKey"]
};
var status = AccountUser.Add(newUser);