ユーザー作成のAPI

このAPIでは新規新規ユーザーを作成できます。

リクエスト サンプル

XMLでレスポンスを受けるには:http://[APM Host]:[APM Port]/AppManager/xml/Users/create?apikey=[API_KEY]&userName=[NAME]&role=[ROLE]&password=[PASS_WORD]
JSONでレスポンスを受けるには:http://[APM Host]:[APM Port]/AppManager/json/Users/create?apikey=[API_KEY]&userName=[NAME]&role=[ROLE]&password=[PASS_WORD]  

リクエスト パラメーター

APIリクエストにかかわるパラメーターを下に記します。

フィールド 説明
userName ユーザーのユーザー名です。
role 新規ユーザーのユーザー グループです。
password 新規ユーザーのパスワードです。
email(任意項目) ユーザーのメール アドレスです。
description(任意項目) ユーザーの説明です。
groupId(任意項目) ユーザーを関連付ける監視グループのIDです。グループIDはカンマ区切りにしてください。
groupName(任意項目) ユーザーを関連付ける監視グループの名前です。グループIDを指定する場合は、このパラメーターは無視されます。

サンプル レスポンス

<AppManager-response uri="/AppManager/xml/users/create"> <result> <response response-code="4000"> <User email="manager" userId="6" description="manager" userName="manager" role="MANAGER"> <AssociatedGroups groupId="10000035" groupName="Applications Manager"/> <AssociatedGroups groupId="10000037" groupName="mg1"/> <AssociatedGroups groupId="10000038" groupName="mg2"/> </User> </response> </result> </AppManager-response>