Contents

Organizations

自分が所属する組織の一覧を取得します。

メソッド

GET

URL

https://cacoo.com/api/v1/organizations.format
例 : https://cacoo.com/api/v1/organizations.json

フォーマット

json, xml

認証

必須

パラメーター

パラメーターはありません。

レスポンス

フィールド説明
result配列組織の一覧です。-
+ id数値組織の一意 ID10000
+ key文字列組織のキーabcdefghij
+ name文字列組織の名前Nulab Inc.
+ created日付作成日(RFC2822)Mon, 10 Aug 2009 17:00:00 +0900
+ updated日付更新日(RFC2822)Mon, 10 Aug 2009 17:00:00 +0900
count数値組織の一覧総数2

JSON形式のレスポンスの例

{
    "result": [
        {
            "id": 10000,
            "key": "abcdefghij",
            "name": "Nulab Inc.",
            "created": "Mon, 10 Aug 2009 17:00:00 +0900",
            "updated": "Mon, 10 Aug 2009 17:00:00 +0900"
        },
        {
            // ...
        }
    ],
    "count": 2
}

XML形式のレスポンスの例

<?xml version="1.0" encoding="utf-8"?>
<organizations>
  <result>
    <organization>
      <id>10000</id>
      <key>abcdefghij</key>
      <name>Nulab Inc.</name>
      <created>Mon, 10 Aug 2009 17:00:00 +0900</created>
      <updated>Mon, 10 Aug 2009 17:00:00 +0900</updated>
    </organization>
    <organization>
         ...
    </organization>
  </result>
  <count>2</count>
</organizations>