MENU

Description

お知らせ一覧を取得します。

Request URL

billing API v1

GET /v1/{tenant_id}/notifications

Request Paramters

Parameter Value Style Description
X-Auth-Token Userトークン header トークンID
tenant_id Tenant ID URI テナントID
offset(Optional) 取得開始位置 query Default:0
limit(Optional) 取得数 query Default:1000

Example
※エンドポイントURLにつきましては、お客様環境によって異なりますので、コントロールパネルにてご確認の上ご利用ください。

  • REQ
curl -i -X GET \
-H "Accept: application/json" \
-H "X-Auth-Token: 35941e7df872405d84e5b026dba8323c" \
https://account.tyo1.conoha.io/v1/487727e3921d44e3bfe7ebb337bf085e/notifications
  • RES
HTTP/1.1 200 OK
Date: Tue, 28 Oct 2014 02:54:35 GMT
Server: Apache/2.4.10 (Unix) PHP/5.5.16
X-Powered-By: PHP/5.5.16
Content-Length: 5599
Content-Type: application/json

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