Description

お知らせ情報の既読・未読のステータスを変更します。

Request URL

Account API

PUT /v1/{tenant_id}/notifications/{notification_code}

Request Json

{
    "notification": {
        "read_status": “閲覧ステータス”
    }
}

Request Parameters

Parameter Value Style Description
X-Auth-Token トークンID header トークンIDを指定します。
tenant_id テナントID path テナントIDを指定します。
notification_code ノティフィケーションコード path ノティフィケーションコードを指定します。
read_status Unread
ReadTitleOnly
Read
body 閲覧ステータスを指定します。

Response Code

Success

200

Example

Request

curl -i -X PUT \
-H "Accept: application/json" \
-H "X-Auth-Token: トークンID" \
-d '{"notification": {"read_status": "Read"}}' \
https://account.tyo1.conoha.io/v1/テナントID/notifications/ノティフィケーションコード

Response

HTTP/1.1 200 OK
Date: Wed, 24 Dec 2014 04:14:20 GMT
Server: Apache
Content-Length: 2092
Content-Type: application/json

{
  "notification": {
    "notification_code": 20150506,
    "type": null,
    "title": "サービス品質保証制度(SLA)の提供を開始しました",
    "contents": "2015年1月13日よりサービス品質保証制度(以下SLA)の提供を開始しました。",
    "read_status": "Read",
    "start_date": "2015-05-06T21:51:00"
  }
}

ConoHaにて提供しておりますAPIにつきましては、クラウド基盤として採用しておりますOpenStackの機能にて実装しておりますので、詳細な情報や使い方はOpenStackのドキュメントにてご確認ください。