メッセージング

この API を使用すると、Identity Services Engine (ISE) は、MDM がメッセージング・システムを使用してデバイスと通信する場合に、MDM 経由でユーザー・モバイル・デバイスにメッセージを送信できます。

要求

PUT /ciscoise/sendmessage Content Type Header: multipart/form-data

APIを使用するには、MDM Server Info APIがmessaging_supportに関しtrueをリターンする必要があります。

パラメーター名 必須またはオプション 説明
sendmessage 必須 メッセージの XML ペイロードをアップロードします。

要求ペイロード

<?xml version="1.0" encoding="UTF-8"?> <ise_api> <identifier> <macaddress> 000000000000</macaddress> <macaddress> 111111111111</macaddress> </identifier > <message> <message_type>Alert</message_type> <message_header>Need your action in the next 10 minutes</message_header> <message_body>Text body</message_body> </message> </ise_api>

サンプル要求

https://services.fiberlink.com/ciscoise/sendmessage

サンプル応答

<ise_api > <name>sendmessage</name> <api_version>2</api_version> <deviceList> <device> <macaddress>000000000000</macaddress> <result> <message_status>false</register_status> <failure_reason>something happened, message is not sent</failure_reason> </result> </device> <device> <macaddress>111111111111</macaddress> <result> <message_status>true</register_status> <failure_reason> </failure_reason> </result> </device> <deviceList> </ise_api>