Organization

Type: object

AttributeTypeDescription
idstringOrganization's unique id
namestringName of the user
logostring (Optional)URL of the organization's logo
membersOrganization Member[] (Optional)Members of the organization (Does not exist on the response when user is restricted in organization)

Example

{
  "id": "5db981b14ce405d079b376f0",
  "name": "Acme, Inc.",
  "members": [
    {
      "user": {
        "id": "5d9caaecb4a3fa9bc9718686",
        "email": "[email protected]",
        "username": "zozo",
        "emotar": "🍎",
        "avatar": "http://placekitten.com/200/300",
        "last_seen": 1616739240
      },
      "role": "owner",
      "tags": [
        "developers"
      ],
      "restricted": false,
      "invited": 1517184000
    }
  ]
}