Contents
Organizations
Returns a list of organizations you belong to
Method
GET
URL
https://cacoo.com/api/v1/organizations.format
Example : https://cacoo.com/api/v1/organizations.json
Format
json, xml
Authentication
required
Parameters
None
Response
Field | Type | Description | Example |
---|---|---|---|
result | Array | Array of information about the organizations | - |
+ id | Integer | ID of the Organization | 10000 |
+ key | String | Organization Key | abcdefghij |
+ name | String | Organization Name | Nulab Inc. |
+ created | Date | Date Created(RFC2822) | Mon, 10 Aug 2009 17:00:00 +0900 |
+ updated | Date | Date last updated(RFC2822) | Mon, 10 Aug 2009 17:00:00 +0900 |
count | Integer | Number of results | 2 |
JSON Response Example
{
"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 Response Example
<?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>