Skip to main content
GET
/
organization
/
{orgId}
Retrieve an organization
curl --request GET \
  --url https://app.myhero.so/organization/{orgId} \
  --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 full organization document for orgId. The caller must be an owner or member of the organization; 403 is returned otherwise.

Authorizations

Authorization
string
header
required

HERO personal access token

Path Parameters

orgId
string
required
Minimum string length: 1

Response

200 response

data
object
required