メッセージの設定をレスポンスとして返すAPIです。個人設定だけを取得するか、システム設定を含めて取得するかを指定できます。
MessageGetProfiles
使用可能なGaroonのバージョン
固定リンクがコピーされました
- クラウド版Garoon
- パッケージ版Garoon 3.0以降
パラメーター名 |
型 |
パラメーター数 |
説明 |
include_system_profile |
xsd:boolean |
0~1 |
システム設定の取得 |
例
1
|
<parameters include_system_profile="true"></parameters>
|
例
1
2
3
4
|
<returns xmlns="">
<personal_profile use_trash="true" trash_duration="5" />
<system_profile check_send_confirm="false" confirm_action="Manual" />
</returns>
|
個人設定をリクエストのパラメーターとして受け取り、個人設定を変更し、設定内容をレスポンスとして返すAPIです。
MessageSetProfiles
使用可能なGaroonのバージョン
固定リンクがコピーされました
- クラウド版Garoon
- パッケージ版Garoon 3.0以降
例
1
2
3
|
<parameters>
<personal_profile use_trash="true" trash_duration="10"></personal_profile>
</parameters>
|
例
1
2
3
|
<returns xmlns="">
<personal_profile use_trash="true" trash_duration="10" />
</returns>
|