署名を取得するメールアカウントIDをリクエストのパラメーターとして受け取り、署名をレスポンスとして返すAPIです。
MailGetSignatures
使用可能なGaroonのバージョン
固定リンクがコピーされました
- クラウド版Garoon
- パッケージ版Garoon 3.0以降
パラメーター名 |
型 |
パラメーター数 |
説明 |
account_id/text() |
base:IDType
|
1 |
署名を取得するメールアカウントID |
例
1
2
|
<parameters account_id="1">
</parameters>
|
例
1
2
3
|
<returns>
<signature account_id="1" name="test signature" content="signature-content" />
</returns>
|
振り分け設定を取得する
固定リンクがコピーされました
メールアカウントIDをリクエストのパラメーターとして受け取り、指定したメールアカウントIDで設定されている振り分け設定をレスポンスとして返すAPIです。
MailGetFilters
使用可能なGaroonのバージョン
固定リンクがコピーされました
- クラウド版Garoon
- パッケージ版Garoon 3.0以降
パラメーター名 |
型 |
パラメーター数 |
説明 |
account_id/text() |
base:IDType
|
1 |
振り分け設定を取得するメールアカウントID |
例
1
2
|
<parameters account_id="1">
</parameters>
|
例
1
2
3
4
5
6
|
<returns>
<filter name="test-filter" folder="folder-modified"
operation="AND" status="(未設定)">
<expr target="Subject" content="cybozu" method="Including" xmlns="http://schemas.cybozu.co.jp/mail/2008" />
</filter>
</returns>
|
APIを実行するユーザーのメールに関するプロファイル(各種設定)を取得するAPIです。
MailGetProfiles
使用可能なGaroonのバージョン
固定リンクがコピーされました
- クラウド版Garoon
- パッケージ版Garoon 3.0以降
パラメーター名 |
型 |
パラメーター数 |
説明 |
@include_system_profile |
xsd:boolean |
1 |
システム設定情報の取得 |
例
1
2
|
<parameters include_system_profile="true">
</parameters>
|
例
1
2
3
4
5
6
7
8
9
|
<returns>
<personal_profile show_preview="true"
send_charset="JIS" use_trash="true"
use_status="true" use_message_disposition_notification="true"
reply_message_disposition_notification="ShowConfirmMessage">
<from_name account_id="1" name="" />
<from_name account_id="2" name="" />
</personal_profile>
</returns>
|
APIを実行するユーザーのメールに関する個人プロファイル(各種設定)を設定するAPIです。
MailSetProfiles
使用可能なGaroonのバージョン
固定リンクがコピーされました
- クラウド版Garoon
- パッケージ版Garoon 3.0以降
例
1
2
3
4
5
6
7
8
9
|
<parameters>
<personal_profile xmlns=""
show_preview="true" send_charset="JIS" use_trash="true"
send_vcard="true" wrap="true" linewidth="70"
use_message_disposition_notification="false"
use_status="true" use_history="false"
reply_message_disposition_notification="ShowConfirmMessage">
</personal_profile>
</parameters>
|
例
1
2
3
4
5
6
7
|
<returns>
<personal_profile show_preview="true"
send_charset="JIS" use_trash="true"
use_status="true" use_message_disposition_notification="false"
reply_message_disposition_notification="ShowConfirmMessage">
</personal_profile>
</returns>
|