event/post.json 概要

トピック投稿

リクエスト

パラメータ 説明
community_event_id *必須 integer トピックのIDを指定します
body *必須 string コメントの本文を指定します。
open_date *必須 integer 開催日時を指定します
open_date_comment integer 開催日時補足を指定します
area *必須 integer 開催場所を指定します
application_deadline integer 募集期日を指定します
capacity integer 募集人数を指定します

レスポンス

フィールド名 説明
id トピックID
community_id コミュニティID
community_name コミュニティの名前
member トピック所有者メンバーの情報(詳しくは レスポンスの共通仕様 を参照)
name トピックのタイトル
body トピックの本文
created_at トピックの作成時間
images トピックに添付された画像のリスト
editable トピックが編集可能かどうかのフラグ

サンプルリクエスト

$ curl -XPOST -d 'apiKey=cdc4042edf74db746f5bf550039bf50979da2566aa514fc0aac8f57c56398be5&community_id=1&name=bbbbbb&body=bbbbbbbbb' http://example.com/api.php/event/post.json

サンプルレスポンス

{
    "status":"success",
    "data":{
        "id":"5",
        "community_id":"1",
        "community_name":"all",
        "name":"bbbbbb",
        "member":{
            "id":"1",
            "profile_image":"http:\/\/example.com\/images\/no_image.gif",
            "screen_name":"OpenPNE\u541b",
            "name":"OpenPNE\u541b",
            "profile_url":"\/member\/1",
            "friend":false,
            "blocking":false,
            "self":true,
            "friends_count":0,
            "self_introduction":null
        },
        "body":"bbbbbbbb",
        "created_at":"2012-09-27 14:57:57",
        "ago":"5\u79d2\u4ee5\u5185",
        "editable":false,
        "images":[]
    }
}