Contents
Organizations
自分が所属する組織の一覧を取得します。
メソッド
GET
URL
https://cacoo.com/api/v1/organizations.format
例 : https://cacoo.com/api/v1/organizations.json
フォーマット
json, xml
認証
必須
パラメーター
パラメーターはありません。
レスポンス
フィールド | 型 | 説明 | 例 |
---|---|---|---|
result | 配列 | 組織の一覧です。 | - |
+ id | 数値 | 組織の一意 ID | 10000 |
+ 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>