2016-10-18 19 views

答えて

1

絶対的に - 私たちの/4.0/legacyvm3/teams/{team}/events/{event}/elementsエンドポイントにPOSTリクエストを行うことで、現存するイベントのテーブルを作成することができます。要求本体は、次のように構成する必要があります。

{ "random_id": (a UUID or other unique string), "event_id": (the ID of your event), "space_id": (the ID of your space), "pos_x": (the horizontal position of your table), "pos_y": (the vertical position of your table), "rotation": (the desired rotation of your table), "name": (the name that should correspond to your table, or an empty string), "width": (the width of the table, in inches), "length": (the length of the table, in inches), "radius": (the radius of your table, in inches, if circular), "layout": (specify 'table-rectangle-custom' or 'table-circle-custom' for rectangular or circular tables respectively) }のように、要素エレメントのJSONエンコードされた配列である必要があります。

イベントIDとスペースIDは、イベントのURIから取得できます。イベントIDとスペースIDは、それぞれイベントエンドポイントから取得できます。イベントを作成するためのエンドポイントを含む詳細については、https://developer.socialtables.com/api-consoleのエンドポイントの完全なリストを参照してください。

関連する問題