Skip to main content
GET
/
organization
/
default
Retrieve default organization
curl --request GET \
  --url https://app.myhero.so/organization/default \
  --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 the authenticated user’s personal (default) organization, or null if none has been created yet.

Authorizations

Authorization
string
header
required

HERO personal access token

Response

200 response

data
object
required