Skip to main content
GET
/
organization
/
all
List organizations
curl --request GET \
  --url https://app.myhero.so/organization/all \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "_id": "<string>",
      "name": "<string>",
      "isPersonal": false,
      "ownerId": "<string>",
      "members": [
        {
          "userId": "<string>",
          "role": "owner"
        }
      ],
      "createdAt": 123,
      "updatedAt": 123,
      "description": "<string>",
      "icon": {
        "name": "<string>",
        "color": "<string>"
      },
      "emoji": {
        "unified": "<string>",
        "emojiStyle": "<string>"
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.myhero.so/llms.txt

Use this file to discover all available pages before exploring further.

Returns all organizations the authenticated user is a member of, including personal and shared organizations.

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 - application/json

200 response

data
object[]
required