contentsholder/posts.info

作成した記事の情報を取得

URL

GET /v1.0/contentsholder/posts.info

パラメータ

名前 必須 デフォルト値 説明
post_id 必須 - 作成した記事のID
format 任意 markdown 取得する形式。Markdown形式で取得する場合はmarkdown、MarkdownからHTMLに変換後の形式で取得する場合はhtmlを指定。

レスポンス

{
    "ok": true,
    "post": {
        "id": "0123456",
        "url": "https://nordot.app/0123456",
        "title": "桜の開花もカウントダウン",
        "subtitle": "今週末にも開花の予想",
        "status": "public",
        "body": "本日**ウェザーリポート**が発表した最新の桜の開花予想による
        と、先週後半から全国的に気温の高い状態が続きつぼみの成長が一気に進んだため、西日本では今週末に
        も開花する所がちらほらと現れるでしょう。来週には関東地方も次第に春の陽気が訪れ、
        ...
        ということもあり、全国的に次第に心地よい春の陽気を迎えるでしょう。",
        "source_url": "http://nordot-shimbun.com/posts/0123456",
        "published_at": "2015-12-10T20:09:31+00:00",
        "expired_at": "2016-11-10T20:09:31+00:00",
        "created_at": "2015-11-10T20:09:31+00:00",
        "updated_at": "2015-12-25T18:58:10+00:00",
        "images": [
            {
                "id": "2345678",
                "filename": "origin_1.jpg",
                "url": "https://nordot-res.cloudinary.com/t_size_l/ch/images/2345678/origin_1.jpg",
                "url_w": 800,
                "url_h": 590,
                "url": "https://img.nordot.jp/ch/images/2345678/origin_1.jpg",
                "thumb_360": "https://img.nordot.jp/t_thumb_360/ch/images/2345678/origin_1.jpg",
                "caption": "順番待ちの大きなつぼみたちも間もなく開花"
            },
            {
                "id": "3456789",
                "url": "https://img.nordot.jp/ch/images/3456789/origin_1.jpg",
                "thumb_360": "https://img.nordot.jp/t_thumb_360/ch/images/3456789/origin_1.jpg",
                "caption": "日本全国の開花予想日。北海道では4月末頃"
            }
        ],
        "labels": [
            {
                "name": "天気",
                "count": null
            }
        ],
        "tags": [
            "天気",
            "ウェザーリポート"
        ],
        "series": {
            "id": "5678901",
            "title": "桜の開花状況"
        },
        "topic": {
            "id": "6789012",
            "title": "桜特集2015"
        },
        "creator": {
            "id": "0012344",
            "email": "taro@nordot.jp",
            "name": "山田太郎",
            "job_title": "ライター",
            "about": "桜の開花を予想して30年。",
            "accepted_terms_ver": 1;,
            "created_at": "2015-11-16T19:08:41+00:00",
            "updated_at": "2018-02-06T20:10:52+00:00",
            "profile_image": {
                "url": "https://nordot-res.cloudinary.com/members/0012344/profile_1.png",
                "thumb_360": "https://nordot-res.cloudinary.com/t_thumb_360/members/0012344/profile_1.png"
            }
        },
        "updater": {
            "id": "0012344",
            "email": "taro@nordot.jp",
            "name": "山田太郎",
            "job_title": "ライター",
            "about": "桜の開花を予想して30年。",
            "accepted_terms_ver": 1;,
            "created_at": "2015-11-16T19:08:41+00:00",
            "updated_at": "2018-02-06T20:10:52+00:00",
            "profile_image": {
                "url": "https://nordot-res.cloudinary.com/members/0012344/profile_1.png",
                "thumb_360": "https://nordot-res.cloudinary.com/t_thumb_360/members/0012344/profile_1.png"
          }
        },
        "authors": [
            {
                "id": "0012344",
                "email": "taro@nordot.jp",
                "name": "山田太郎",
                "job_title": "ライター",
                "about": "桜の開花を予想して30年。",
                "accepted_terms_ver": 1;,
                "created_at": "2015-11-16T19:08:41+00:00",
                "updated_at": "2018-02-06T20:10:52+00:00",
                "profile_image": {
                    "url": "https://nordot-res.cloudinary.com/members/0012344/profile_1.png",
                    "thumb_360": "https://nordot-res.cloudinary.com/t_thumb_360/members/0012344/profile_1.png"
                }
            }
        ]
    }
}

postには、条件に一致したcontentsholder postオブジェクトが入っています。詳細は、 contentsholder postオブジェクトを参照してください。

エラー

エラーコード 説明
no_unit_id unit_idが必須なのに渡されていない
invalid_post_id 不正なpost_idの指定
post_not_found 記事が見つからない
invalid_label 不正なformatの指定

上記以外のエラーは、共通エラーの項目を参照してください。